-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
50 lines (50 loc) · 1.11 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
{
"name": "pixelpeter/laravel5-isocodes-validation",
"description": "Laravel 5 wrapper for the IsoCodes Validation library from ronanguilloux",
"keywords": [
"laravel",
"iso",
"isocode",
"validation"
],
"homepage": "https://github.com/pixelpeter/laravel5-isocodes-validation",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Peter Haak",
"email": "info@pixelpeter.de",
"homepage": "https://pixelpeter.de/",
"role": "Developer"
}
],
"require": {
"php" : "^7.1",
"ronanguilloux/isocodes": "^2.1.5"
},
"autoload": {
"psr-4": {
"Pixelpeter\\IsoCodesValidation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Pixelpeter\\IsoCodesValidation\\Test\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"mockery/mockery": "^1.2",
"php-coveralls/php-coveralls": "^2.1",
"laravel/laravel": "5.8.*"
},
"extra": {
"laravel": {
"providers": [
"Pixelpeter\\IsoCodesValidation\\IsoCodesValidationServiceProvider"
]
}
}
}