forked from thecodingmachine/safe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 816 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
31
32
33
34
{
"name": "thecodingmachine/safe-generator",
"description": "Generated the files for thecodingmachine/safe",
"autoload": {
"psr-4": {
"Safe\\": "src/"
}
},
"require": {
"php": "^7.2",
"ext-simplexml": "*",
"ext-json": "^1.5",
"symfony/console": "^4.1.4",
"symfony/process": "^4.1",
"symfony/finder": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.2",
"phpstan/phpstan": "^0.12",
"thecodingmachine/phpstan-strict-rules": "^0.12",
"squizlabs/php_codesniffer": "^3.2",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"phpstan": "phpstan analyse src -c phpstan.neon --level=max --no-progress -vvv",
"cs-fix": "phpcbf",
"cs-check": "phpcs"
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}