forked from antonioribeiro/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (49 loc) · 1.19 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
{
"name": "pragmarx/countries",
"description": "Laravel Countries and Currencies",
"keywords": ["countries", "currencies", "laravel", "pragmarx"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "[email protected]",
"role": "Creator"
}
],
"require": {
"php": ">=7.0",
"laravel/framework": ">=5.3",
"commercie/currency": "^1.0",
"psr/simple-cache": "^1.0",
"gasparesganga/php-shapefile": "^2.3",
"pragmarx/coollection": "^0.1"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"PragmaRX\\Countries\\Package\\": "src/package"
},
"files": [
"src/package/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"PragmaRX\\Countries\\Tests\\": "tests/",
"PragmaRX\\Countries\\Tests\\PhpUnit\\": "tests/PhpUnit/"
}
},
"extra": {
"laravel": {
"providers": [
"PragmaRX\\Countries\\Package\\ServiceProvider"
],
"aliases": {
"Countries": "PragmaRX\\Countries\\Package\\Facade"
}
}
}
}