-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 954 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
35
36
{
"name": "landingi/php-coding-standards",
"description": "Landingi Static Code Analyze Bundle",
"license": "MIT",
"require": {
"php": ">=7.4",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/extension-installer": "^1.1",
"symplify/easy-coding-standard": "^11.3",
"symfony/polyfill-php80": "^1.27",
"povils/phpmnd": "^3.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/dotenv": "~5.4.5",
"phpunit/phpunit": "~9.5.26"
},
"autoload": {
"psr-4": {
"Landingi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Landingi\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}