forked from qdequippe/friendsofphp-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.34 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
{
"name": "friends-of-php/friends-of-php",
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.3",
"nette/utils": "^2.5",
"symfony/var-dumper": "^4.1",
"symplify/statie": "^5.2",
"symplify/package-builder": "^5.2",
"rinvex/country": "^3.1",
"symfony/console": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/dom-crawler": "^4.1"
},
"require-dev": {
"phpstan/phpstan": "^0.10.5",
"phpunit/phpunit": "^7.3",
"symplify/easy-coding-standard": "^5.2",
"symplify/monorepo-builder": "^5.2",
"spatie/http-status-check": "^3.1"
},
"autoload": {
"psr-4": {
"Fop\\": "src",
"Fop\\MeetupCom\\": "packages/MeetupCom/src"
}
},
"autoload-dev": {
"psr-4": {
"Fop\\MeetupCom\\Tests\\": "packages/MeetupCom/tests",
"Fop\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check bin src tests packages",
"fix-cs": "vendor/bin/ecs check bin src tests packages --fix",
"phpstan": "vendor/bin/phpstan analyse bin src tests packages --level max",
"generate": [
"bin/console import",
"vendor/bin/statie generate source"
]
}
}