-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (49 loc) · 1.23 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": "shimadotdev/iran-regions",
"description": "A Laravel package containing province and city data of Iran, including calling codes, along with geolocation functionality. Ideal for managing location-based information within Laravel apps.",
"type": "laravel-package",
"license": "MIT",
"keywords": [
"php",
"laravel",
"iran",
"iran-regions",
"iran-geo-coordinates",
"iran-cities"
],
"autoload": {
"psr-4": {
"Shimadotdev\\IranRegions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shimadotdev\\IranRegions\\Tests\\": "tests",
"Database\\Seeders\\": "database/seeders/"
}
},
"authors": [
{
"name": "Shima .dev",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Shimadotdev\\IranRegions\\IranRegionsServiceProvider"
]
}
},
"require": {
"php": ">=8.0",
"laravel/framework": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"orchestra/testbench": "^9.1"
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}