-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
61 lines (61 loc) · 1.38 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
{
"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": ">=8.1",
"nette/di": "^3.0.9",
"symfony/cache": "^6.0 || ^7.0",
"symfony/config": "^6.0 || ^7.0",
"symfony/validator": "^6.4 || ^7.0"
},
"require-dev": {
"doctrine/cache": "^2.2",
"nette/bootstrap": "^3.0",
"nette/tester": "^2.4",
"ninjify/nunjuck": "^0.4.0",
"ninjify/qa": "^0.13.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"symfony/translation": "^6.0 || ^7.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,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}