forked from paulKliemann/dynamic-form-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.84 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.84 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
68
69
70
71
72
{
"name": "move-elevator/dynamic-form-bundle",
"description": "DynamicForm creates database driven forms and persist results",
"type": "symfony-bundle",
"time": "2016-11-15",
"license": "MIT",
"authors": [
{
"name": "Frank Jogeleit",
"email": "frank.jogeleit@web.de"
}
],
"require": {
"php": ">=7.1.3",
"symfony/symfony": "~4.1",
"sensio/framework-extra-bundle": "~5.2",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"hautelook/alice-bundle": "^2.3",
"sonata-project/admin-bundle": "~3.0"
},
"require-dev": {
"tm/tooly-composer-script": "^1.0"
},
"autoload": {
"psr-4": { "DynamicFormBundle\\": "" }
},
"autoload-dev": {
"psr-4": {
"DynamicFormBundle\\Tests\\": "Tests/Fixtures"
}
},
"scripts": {
"post-install-cmd": [
"Tooly\\ScriptHandler::installPharTools"
],
"post-update-cmd": [
"Tooly\\ScriptHandler::installPharTools"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-6.1.3.phar"
},
"phpcpd": {
"url": "https://phar.phpunit.de/phpcpd.phar",
"force-replace": true
},
"phpcs": {
"url": "https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar",
"force-replace": true
},
"phpmd-extension": {
"url": "https://github.com/mi-schi/phpmd-extension/releases/download/stable/phpmd-extension.phar",
"force-replace": true
},
"phpmetrics": {
"url": "https://github.com/Halleck45/PhpMetrics/raw/master/build/phpmetrics.phar",
"force-replace": true
},
"pdepend": {
"url": "http://static.pdepend.org/php/latest/pdepend.phar",
"force-replace": true
}
}
}
}