-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.37 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
{
"name": "kslimani/laravel-geo",
"description": "Laravel Geo.",
"keywords": ["country", "currency", "geo", "laravel", "locale"],
"license": "MIT",
"require": {
"php": ">=7.2",
"florianv/laravel-swap": "^2.2",
"kslimani/geo-list": "^1.0",
"maxmind-db/reader": "^1.8",
"moneyphp/money": "^3.3"
},
"require-dev": {
"ext-intl": "*",
"friendsofphp/php-cs-fixer": "^2.17",
"nyholm/psr7": "^1.3",
"orchestra/testbench": "^6.7",
"php-http/curl-client": "^2.2",
"php-http/message": "^1.10",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Sk\\Geo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Sk\\Geo\\GeoServiceProvider"
],
"aliases": {
"Geo": "Sk\\Geo\\Facades\\Geo"
}
}
},
"scripts": {
"lint": [
"vendor/bin/php-cs-fixer fix --diff --diff-format=udiff --using-cache=no --dry-run src",
"vendor/bin/php-cs-fixer fix --diff --diff-format=udiff --using-cache=no --dry-run tests"
],
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}