forked from contributte/validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.34 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
{
"name": "contributte/validator",
"description": "Symfony/Validator integration for Nette Framework.",
"keywords": [
"symfony",
"nette",
"validator"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/contributte/validator",
"authors": [
{
"name": "Jiří Pudil",
"email": "me@jiripudil.cz",
"homepage": "https://jiripudil.cz"
}
],
"require": {
"php": ">=7.4",
"nette/di": "^3.0.1",
"symfony/cache": "^4.0 || ^5.0 || ^6.0",
"symfony/config": "^4.0 || ^5.0 || ^6.0",
"symfony/validator": "^4.0 || ^5.2 || ^6.0"
},
"require-dev": {
"doctrine/annotations": "^1.8",
"doctrine/cache": "^1.10",
"nette/bootstrap": "^3.0",
"nette/tester": "^2.4",
"ninjify/nunjuck": "^0.3.0",
"ninjify/qa": "^0.12",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"symfony/translation": "^4.0 || ^5.0"
},
"autoload": {
"psr-4": {
"Contributte\\Validator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}