-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
61 lines (61 loc) · 1.46 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
61
{
"name": "prestashop/ps_mbo",
"description": "PrestaShop module ps_mbo",
"homepage": "https://github.com/PrestaShop/ps_mbo",
"license": "AFL-3.0",
"type": "prestashop-module",
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false
},
"require": {
"php": ">=7.2.5",
"ext-simplexml": "*",
"ext-bcmath": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"prestashop/circuit-breaker": "^4",
"guzzlehttp/guzzle": "^7.4",
"sentry/sdk": "^3.3",
"symfony/workflow": "^5.1",
"symfony/string": "^5.1",
"prestashop/prestashop-accounts-installer": "^1.0",
"firebase/php-jwt": "^6.3"
},
"require-dev": {
"prestashop/php-dev-tools": "^4",
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "^1.4",
"friendsofphp/php-cs-fixer": "3.3.1",
"symfony/event-dispatcher": "^4.4.20"
},
"autoload": {
"files": [
"bootstrap.php"
],
"psr-4": {
"PrestaShop\\Module\\Mbo\\": "src/",
"PrestaShop\\Module\\Mbo\\Tests\\": "tests"
},
"classmap": [
"ps_mbo.php",
"controllers/"
]
},
"scripts": {
"test": [
"@php -d date.timezone=UTC ./vendor/bin/phpunit -c tests/phpunit.xml"
],
"lint": [
"@php ./vendor/bin/php-cs-fixer fix --no-interaction --dry-run --diff"
]
}
}