-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
37 lines (37 loc) · 1.21 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
{
"name": "monsieurbiz/sylius-advanced-shipping-plugin",
"type": "sylius-plugin",
"keywords": ["sylius", "sylius-plugin", "monsieurbiz", "shipping"],
"description": "Advanced configuration for shipping methods.",
"license": "MIT",
"require": {
"php": "~8.0",
"ext-dom": "*",
"ext-simplexml": "*",
"sylius/sylius": ">=1.9 <1.13",
"quentinbontemps/php-mondialrelay-api": "^1.0",
"symfony/http-client": "^6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpmd/phpmd": "^2.13",
"friendsofphp/php-cs-fixer": "^3.17"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"MonsieurBiz\\SyliusAdvancedShippingPlugin\\": "src/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --using-cache=no",
"phpstan": "phpstan analyse -c phpstan.neon src/",
"phpmd": "phpmd --exclude Migrations/* src/ ansi phpmd.xml"
}
}