forked from egeloen/ivory-ordered-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 842 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
{
"name": "egeloen/ordered-form",
"description": "Provides a form ordering support with the Symfony2 form component.",
"keywords": [ "symfony2", "form", "order" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"symfony/form": "^2.7|^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^5.0",
"symfony/phpunit-bridge": "^2.7|^3.0|^4.0"
},
"autoload": {
"psr-4": { "Ivory\\OrderedForm\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\OrderedForm\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}