-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.74 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "open-pix/opencart-woovi",
"description": "Woovi integration module with OpenCart",
"type": "project",
"license": "GPL-3.0",
"require": {
"php": "^7.3 || ^8.0",
"open-pix/php-sdk": "^1.1",
"guzzlehttp/guzzle": "^7.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"consolidation/robo": "^3",
"vlucas/phpdotenv": "^5.5",
"phpstan/phpstan": "^1.10",
"php-stubs/generator": "^0.8.3",
"symfony/finder": "^5.4",
"syberisle/mock-php-stream": "^1.1",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Woovi\\Opencart\\": "src/system/library/woovi/src"
}
},
"autoload-dev": {
"psr-4": {
"Scripts\\": "scripts/",
"Tests\\": "tests/"
}
},
"scripts": {
"style:check": "php-cs-fixer fix . --dry-run --diff --format=txt --verbose",
"style:fix": "php-cs-fixer fix .",
"robo": [
"Composer\\Config::disableProcessTimeout",
"vendor-bin/robo"
],
"lint": "robo extension:lint",
"build": "robo extension:build",
"test": "robo test",
"test:unit": "robo test:unit",
"test:integration": "robo test:integration",
"post-install-cmd": [
"@robo extension:enable-environment production",
"@robo webhooks:set-public-key"
],
"post-update-cmd": [
"@robo webhooks:set-public-key"
]
},
"config": {
"bin-dir": "vendor-bin",
"vendor-dir": "src/system/library/woovi/vendor",
"allow-plugins": {
"php-http/discovery": true
}
}
}