-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
50 lines (49 loc) · 1.29 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
45
46
47
48
49
50
{
"name": "ekino/phpstan-sonata",
"type": "phpstan-extension",
"description": "PHPStan extension for Sonata",
"keywords": ["PHPStan", "Sonata Project", "static analysis"],
"homepage": "https://github.com/ekino/phpstan-sonata",
"license": "MIT",
"authors": [
{
"name": "Rémi Marseille",
"email": "remi.marseille@ekino.com",
"homepage": "https://www.ekino.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"phpstan/phpstan": "^1.0",
"sonata-project/admin-bundle": "^3.107 || ^4.0",
"sonata-project/doctrine-orm-admin-bundle": "^3.6 || ^4.3"
},
"require-dev": {
"nikic/php-parser": "^4.3",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan-phpunit": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Ekino\\PHPStanSonata\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Ekino\\PHPStanSonata\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}