forked from philiplb/CRUDlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.21 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
{
"name": "philiplb/crudlex",
"type": "library",
"description": "An easy to use CRUD generator for Silex.",
"keywords": ["silex", "crud", "admin generator"],
"homepage": "https://github.com/philiplb/CRUDlex",
"license": "MIT",
"authors": [
{
"name": "Philip Lehmann-Böhm",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"silex/silex": "~2.0",
"symfony/twig-bridge": "~3.2",
"doctrine/dbal": "~2.5",
"symfony/yaml": "~3.2",
"symfony/translation": "~3.2",
"symfony/intl": "~3.2",
"philiplb/valdi": "0.10.0",
"romaricdrigon/metayaml": "~1.1",
"riimu/kit-phpencoder": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "1.0.1",
"symfony/browser-kit": "~3.2",
"symfony/css-selector": "~3.2",
"sphpdox/sphpdox": "dev-master",
"eloquent/phony": "~0.14"
},
"autoload": {
"psr-4": { "CRUDlex\\": "src/CRUDlex" }
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "0.12.x-dev"
}
}
}