-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
44 lines (43 loc) · 1.19 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": "ekino/phpstan-sonata",
"type": "library",
"description": "PHPStan extension for Sonata",
"keywords": ["PHPStan", "Sonata Project"],
"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.1",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"sonata-project/doctrine-orm-admin-bundle": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"friendsofphp/php-cs-fixer": "^2.12",
"sensiolabs/security-checker": "^4.1"
},
"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": "0.10-dev"
}
}
}