-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 937 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
{
"name": "creativestyle/admin-list-bundle",
"description": "Bundle for making admin listings fast & easy",
"keywords": ["bundle", "symfony", "admin", "list", "filter", "search"],
"license": "MIT",
"authors": [
{
"name": "Filip Sobalski",
"email": "[email protected]",
"homepage": "http://creativestyle.pl"
}
],
"require": {
"php": ">=5.5",
"doctrine/orm": "~2.3",
"symfony/templating": "^4",
"symfony/twig-bridge": "^4",
"symfony/options-resolver": "^4",
"creativestyle/utilities": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "~6.2"
},
"autoload": {
"psr-4": {
"Creativestyle\\AdminListBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Creativestyle\\AdminListBundle\\Tests\\": "tests/"
}
}
}