-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
55 lines (55 loc) · 1.79 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
{
"name": "sllh/iso-codes-validator",
"type": "library",
"description": "Symfony validator wrapper of ronanguilloux/isocodes",
"keywords": ["ISO codes", "Symfony", "Validator"],
"license": "MIT",
"authors": [
{
"name": "Sullivan Senechal",
"email": "soullivaneuh@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ronanguilloux/isocodes": "^2.3.4",
"symfony/translation": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"sebastian/exporter": "^1.2.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/finder": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/phpunit-bridge": "^4.4 || ^5.0"
},
"suggest": {
"symfony/dependency-injection": "For Symfony integration as a bundle",
"symfony/http-kernel": "For Symfony integration as a bundle",
"symfony/finder": "For Symfony integration as a bundle"
},
"conflict": {
"symfony/dependency-injection": "<2.7",
"symfony/http-kernel": "<2.7",
"symfony/finder": "<2.7"
},
"autoload": {
"psr-4": { "SLLH\\IsoCodesValidator\\": "src" }
},
"autoload-dev": {
"psr-4": { "SLLH\\IsoCodesValidator\\Tests\\": "tests" },
"psr-0": { "IsoCodes\\Tests\\": "vendor/ronanguilloux/isocodes/tests" }
},
"config": {
"sort-packages": true
},
"extra": {
"patches": {
"ronanguilloux/isocodes": {
"fix(gtin8): wrong interface signature match": "https://github.com/ronanguilloux/IsoCodes/pull/169.patch"
}
}
}
}