forked from axlon/laravel-postal-code-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.68 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
62
63
{
"name": "axlon/laravel-postal-code-validation",
"description": "Worldwide postal code validation for Laravel",
"keywords": [
"laravel",
"lumen",
"post code",
"postal code",
"zip code",
"validation"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Choraimy Kroonstuiver",
"homepage": "https://github.com/axlon"
}
],
"require": {
"php": "^7.1",
"illuminate/contracts": "^5.1 || ^6.0 || ^7.0",
"illuminate/http": "^5.1 || ^6.0 || ^7.0",
"illuminate/support": "^5.1 || ^6.0 || ^7.0",
"illuminate/validation": "^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"illuminate/filesystem": "^5.1 || ^6.0 || ^7.0",
"illuminate/translation": "^5.1 || ^6.0 || ^7.0",
"ocramius/package-versions": "^1.4",
"phpunit/phpunit": "^7.0",
"symfony/var-exporter": "^4.0"
},
"autoload": {
"psr-4": {
"Axlon\\PostalCodeValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Axlon\\PostalCodeValidation\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"build": "./bin/generate-formats",
"test": "./vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"build": "Generate a new postal code formats file.",
"test": "Run all tests."
},
"extra": {
"laravel": {
"providers": [
"\\Axlon\\PostalCodeValidation\\ValidationServiceProvider"
]
}
}
}