-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 1016 Bytes
/
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
{
"name": "sonlabs/address-varification",
"keywords": ["address-validation","custom-validation","google-map-address","address","validation"],
"description": "This package used for physical address verification with google",
"authors": [
{
"name": "Manoj Sonagra",
"email": "manoj30808@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "~6.0"
},
"autoload": {
"psr-4": {
"Sonlabs\\AddressValid\\": "src"
}
},
"scripts": {
"post-create-project-cmd": [
"php artisan migrate",
"php artisan vendor:publish"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
}
}