-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
33 lines (33 loc) · 1.17 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
{
"name": "ampersand/magento2-upgrade-patch-helper",
"description": "A script to help identify local overrides and preferences which need to be reviewed when upgrading magento2",
"authors": [
{
"name": "Mostafa Abdelrahman"
},
{
"name": "Luke Rodgers"
}
],
"require": {
"symfony/console": "^3.4|^4.0",
"php": "~7.2|~7.3|~7.4|~8.1|~8.2",
"ext-libxml": "*"
},
"autoload": {
"classmap": ["src/"],
"files": ["src/functions.php"]
},
"license": "LGPL-3.0-only",
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5",
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"test:static:fix": "export PHP_CS_FIXER_IGNORE_ENV=1; vendor/bin/phpcbf --standard=dev/phpcs.xml && vendor/bin/php-cs-fixer fix --diff",
"test:static": "export PHP_CS_FIXER_IGNORE_ENV=1; vendor/bin/phpcs --standard=dev/phpcs.xml -s && vendor/bin/php-cs-fixer fix --diff --dry-run",
"test:phpstan": "dev/phpstan/run.sh",
"test:unit": "vendor/bin/phpunit -c dev/phpunit/unit/phpunit.xml --verbose"
}
}