-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
30 lines (30 loc) · 966 Bytes
/
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
{
"require": {
"ext-json": "*",
"ext-simplexml": "*",
"ext-mbstring": "*",
"php": "^7.1",
"symfony/console": "^4.2",
"thecodingmachine/safe": "^0.1.14"
},
"autoload": {
"psr-4": {
"UserAgentParserComparison\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.16.4",
"vimeo/psalm": "3.6.4",
"phpstan/phpstan": "0.11.19",
"thecodingmachine/phpstan-safe-rule": "^0.1.3",
"maglnet/composer-require-checker": "^2.0"
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon --memory-limit=768M --no-progress",
"psalm": "psalm --show-info=false",
"php-cs-fixer-check": "php-cs-fixer fix --dry-run -vv",
"php-cs-fixer-fix": "php-cs-fixer fix -vv",
"prettier-check": "yarn run prettier -l \"**/*.js\"",
"prettier-fix": "yarn run prettier --write \"**/*.js\""
}
}