-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.29 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
{
"name": "c0ntax/parsley-bundle",
"version": "0.6.3",
"type": "symfony-bundle",
"description": "A bridge between Symfony and Parsley.js",
"license": "Apache-2.0",
"homepage": "https://github.com/c0ntax/parsley-bundle",
"authors": [
{
"name": "Dan Burzynski",
"email": "contax@phrenetic.org"
}
],
"keywords": [
"symfony",
"bundle",
"parsleyjs",
"parsley.js"
],
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"C0ntax\\ParsleyBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"C0ntax\\ParsleyBundle\\Tests\\": "tests"
}
},
"require": {
"php": "^7.1",
"symfony/validator": "^2.8|^3.0|^4.0",
"symfony/form": "^2.8|^3.0|^4.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^5.7",
"symfony/framework-bundle": "^2.8|^3.0|^4.0",
"symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
"symfony/var-dumper": "^2.8|^3.0|^4.0",
"doctrine/annotations": "^1.6",
"matthiasnoback/symfony-config-test": "^2.0"
},
"scripts": {
"test": "phpunit"
}
}