-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.32 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.32 KB
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
{
"name": "gocanto/places-validation",
"description": "validate users addresses through services like google place",
"keywords": ["validate", "users", "addresses", "places", "validation"],
"homepage": "https://github.com/gocanto/places-validation",
"license": "MIT",
"authors": [
{
"name": "Gustavo Ocanto",
"email": "gustavoocanto@gmail.com",
"homepage": "http://g-ocanto.com",
"role": "Web Developer"
}
],
"require": {
"php" : "^7.1.3",
"illuminate/support": "5.6.*"
},
"require-dev": {
"phpunit/phpunit" : "~7.0",
"orchestra/testbench": "3.6.*",
"mockery/mockery": "~1.0",
"sebastian/diff": "^3.0"
},
"autoload": {
"psr-4": {
"Gocanto\\AddressValidation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gocanto\\AddressValidation\\Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Gocanto\\AddressValidation\\ValidatorServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}