-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
51 lines (51 loc) · 1.2 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
51
{
"name": "ekino/sonata",
"description": "Sonata Helpers by Ekino",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["sonata", "helpers", "admin"],
"homepage": "https://github.com/ekino/sonata",
"authors": [
{
"name": "Ekino PHP Team",
"email": "php@ekino.com"
}
],
"require": {
"liip/monitor-bundle": "^2.8",
"php": "^7.1",
"sonata-project/admin-bundle": "^3.1",
"sonata-project/doctrine-orm-admin-bundle": "^3.0",
"sonata-project/media-bundle": "^3.0",
"sonata-project/page-bundle": "^3.11",
"symfony/framework-bundle": "^4.4"
},
"require-dev": {
"doctrine/inflector": "^1.4",
"ekino/phpstan-banned-code": "^0.3",
"friendsofphp/php-cs-fixer": "^3.0",
"ergebnis/composer-normalize": "^2.6",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^7.2",
"symfony/phpunit-bridge": "^5.0.3",
"symfony/var-dumper": "^4.3"
},
"autoload": {
"psr-4": {
"Sonata\\HelpersBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\HelpersBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}