-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (84 loc) · 2.74 KB
/
Copy pathcomposer.json
File metadata and controls
91 lines (84 loc) · 2.74 KB
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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fp/jsformvalidator-bundle",
"type": "symfony-bundle",
"description": "JavaScript validation for Symfony forms.",
"keywords": ["Symfony", "Form", "Javascript", "Validation"],
"homepage": "https://github.com/formapro/JsFormValidatorBundle",
"license": "MIT",
"authors": [
{
"name": "Ton Sharp",
"email": "66ton99@gmail.com"
},
{
"name": "Yury Maltsev",
"email": "dev.yury.maltsev@gmail.com"
}
],
"require": {
"php": "^8.4",
"doctrine/persistence": "^2.5 || ^3.0 || ^4.0",
"symfony/config": "^8.0",
"symfony/dependency-injection": "^8.0",
"symfony/doctrine-bridge": "^8.0",
"symfony/form": "^8.0",
"symfony/http-foundation": "^8.0",
"symfony/http-kernel": "^8.0",
"symfony/routing": "^8.0",
"symfony/translation-contracts": "^3.6",
"symfony/validator": "^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^13.0",
"symfony/asset": "^8.0",
"symfony/console": "^8.0",
"symfony/dotenv": "^8.0",
"symfony/framework-bundle": "^8.0",
"symfony/phpunit-bridge": "^8.0",
"symfony/security-csrf": "^8.0",
"symfony/translation": "^8.0",
"symfony/twig-bundle": "^8.0",
"symfony/webpack-encore-bundle": "^1.17 || ^2.0",
"symfony/yaml": "^8.0"
},
"suggest": {
"doctrine/orm": "For the UniqueEntity validation",
"doctrine/doctrine-bundle": "For the UniqueEntity validation",
"symfony/framework-bundle": "For registering the bundle in a Symfony application",
"symfony/twig-bundle": "For using the Twig helper functions"
},
"autoload": {
"psr-4": {
"Fp\\JsFormValidatorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fp\\JsFormValidatorBundle\\Tests\\": "Tests/",
"App\\": "Tests/app/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"symfony": {
"allow-contrib": true,
"require": "8.*"
}
},
"scripts": {
"coverage": [
"XDEBUG_MODE=coverage phpunit --coverage-cobertura build/coverage/phpunit/cobertura.xml --coverage-text --only-summary-for-coverage-text",
"php tools/check-coverage.php build/coverage/phpunit/cobertura.xml 80 PHP"
],
"phpstan": [
"APP_ENV=test APP_DEBUG=1 php Tests/app/bin/console cache:warmup --env=test",
"phpstan analyse --memory-limit=1G"
],
"test": "phpunit"
}
}