-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (63 loc) · 1.91 KB
/
composer.json
File metadata and controls
67 lines (63 loc) · 1.91 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "shapecode/crud-bundle",
"description": "Implements crud functions.",
"keywords": [
"crud",
"create",
"read",
"update",
"delete",
"shapecode",
"symfony",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/cron-bundle",
"support": {
"email": "support@shapeocode.de",
"issues": "https://github.com/shapecode/cron-bundle/issues",
"source": "https://github.com/shapecode/cron-bundle/releases",
"wiki": "https://github.com/shapecode/cron-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://nikita-loges.de",
"email": "develop@nikita-loges.de"
}
],
"require": {
"php": "~5.6|~7.0",
"symfony/framework-bundle": "~2.8|~3.4|~4.0",
"symfony/http-kernel": "~2.8|~3.4|~4.0",
"symfony/config": "~2.8|~3.4|~4.0",
"symfony/dependency-injection": "~2.8|~3.4|~4.0",
"symfony/twig-bundle": "~2.8|~3.4|~4.0",
"symfony/form": "~2.8|~3.4|~4.0",
"symfony/finder": "~2.8|~3.4|~4.0",
"symfony/routing": "~2.8|~3.4|~4.0",
"symfony/translation": "~2.8|~3.4|~4.0",
"symfony/http-foundation": "~2.8|~3.4|~4.0",
"symfony/options-resolver": "~2.8|~3.4|~4.0",
"symfony-cmf/routing": "~2.0",
"doctrine/doctrine-bundle": "~1.6",
"doctrine/orm": "~2.5",
"doctrine/collections": "~1.4",
"knplabs/knp-components": "~1.3",
"knplabs/knp-paginator-bundle": "~2.7",
"twig/twig": "~1.34|~2.0"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\CRUDBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}