-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
{ "name": "chaplean/form-handler-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "The Bundle base to fork",
"authors": [
{
"name": "Chaplean",
"homepage": "http://www.chaplean.coop"
}
],
"autoload": {
"psr-4": {
"Chaplean\\Bundle\\FormHandlerBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://satis.chaplean.coop"
}
],
"require": {
"php": ">=7.0.8",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"friendsofsymfony/rest-bundle": "^2.1",
"symfony/config": "^3.0 || ^4.0",
"symfony/console": " ^3.0 || ^4.0",
"symfony/dependency-injection": "^3.0 || ^4.0",
"symfony/form": "^3.0 || ^4.0",
"symfony/validator": "^3.0 || ^4.0",
"symfony/yaml": "^3.0 || ^4.0"
},
"require-dev": {
"chaplean/coding-standard": "^1.1",
"mockery/mockery": "dev-master",
"phpunit/phpunit": "^7.0 || ^8.0",
"symfony/http-kernel": "^3.0 || ^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/serializer": "^3.0 || ^4.2",
"symfony/var-dumper": "^3.0 || ^4.0"
},
"config": {
"bin-dir": "bin",
"discard-changes": true,
"sort-packages": true
},
"conflict": {
"chaplean/unit-bundle": "<8.0.0"
},
"extra": {
"symfony-bin-dir": "bin",
"symfony-var-dir": "var"
}
}