-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
72 lines (72 loc) · 1.76 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
64
65
66
67
68
69
70
71
72
{
"name": "yajra/laravel-address",
"description": "Philippines Address Lookup API for Laravel.",
"keywords": [
"yajra",
"laravel",
"address"
],
"homepage": "https://github.com/yajra/laravel-address",
"license": "MIT",
"authors": [
{
"name": "Arjay Angeles",
"email": "[email protected]",
"homepage": "http://yajrabox.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/database": "^11.0",
"rap2hpoutre/fast-excel": "^5.5.0",
"spatie/laravel-html": "^3.11.1"
},
"require-dev": {
"phpunit/phpunit" : "^10.5.36|^11",
"larastan/larastan": "^2.9.9",
"rector/rector": "^1.2.8",
"orchestra/testbench": "^9.5.2",
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-laravel": "^2.4"
},
"autoload": {
"psr-4": {
"Yajra\\Address\\": "src",
"Yajra\\Address\\Seeders\\": "database/seeders"
}
},
"autoload-dev": {
"psr-4": {
"Yajra\\Address\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "12.x-dev"
},
"laravel": {
"providers": [
"Yajra\\Address\\AddressServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/yajra"
}
]
}