forked from RobinDvorak/JsFormValidatorBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·80 lines (76 loc) · 2.07 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "shopsys/jsformvalidator-bundle",
"type": "symfony-bundle",
"description": "Javascript validation for Symfony forms.",
"keywords": ["Symfony", "Form", "Javascript", "Validation"],
"homepage": "https://github.com/shopsys/JsFormValidatorBundle",
"license": "MIT",
"authors": [
{
"name": "Ton Sharp",
"email": "66ton99@gmail.com"
},
{
"name": "Yury Maltsev",
"email": "dev.yury.maltsev@gmail.com"
}
],
"require": {
"php": ">=7.4",
"symfony/form": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"ext-pdo_sqlite": "*",
"erusev/parsedown": "^1.6",
"sensio/framework-extra-bundle": "^5.1",
"symfony/asset": "*",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/expression-language": "*",
"symfony/flex": "^1.17",
"symfony/framework-bundle": "*",
"symfony/intl": "*",
"symfony/security-bundle": "*",
"symfony/translation": "*",
"symfony/twig-bundle": "*",
"symfony/webpack-encore-bundle": "^1.4",
"symfony/yaml": "*",
"tgalopin/html-sanitizer-bundle": "^1.1",
"twig/twig": "^2.6"
},
"suggest": {
"symfony/symfony": "For using as a Symfony Bundle and for using a default ajax validation"
},
"autoload": {
"psr-4": {
"Fp\\JsFormValidatorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "Tests/app/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.7-dev"
},
"symfony": {
"allow-contrib": true,
"require": "5.4.*"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}