-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
51 lines (51 loc) · 1.41 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
{
"name": "j-ben87/parsley-bundle",
"description": "Convert Symfony constraints into data-attributes for client-side validation with Parsley.",
"type": "symfony-bundle",
"keywords": ["symfony", "bundle", "parsley", "validation", "client-side"],
"license": "MIT",
"authors": [
{
"name": "Benoit Jouhaud",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/form": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/validator": "^5.4|^6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-symfony": "^1.1",
"phpstan/extension-installer": "^1.1"
},
"autoload": {
"psr-4": {
"JBen87\\ParsleyBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"JBen87\\ParsleyBundle\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
}
}