forked from karam-mustafa/laravel-geographical-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.17 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
{
"name": "kmlaravel/laravel-geographical-calculator",
"description": "laravel package help you to implement geographical calculation, with With several algorithms that help you deal with coordinates",
"license": "MIT",
"authors": [
{
"name": "Karam mustafa",
"email": "[email protected]",
"homepage": "https://github.com/karam-mustafa"
}
],
"require": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0"
},
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^6.23"
},
"autoload" : {
"psr-4": {
"KMLaravel\\GeographicalCalculator\\" : "src/",
"KMLaravel\\GeographicalCalculator\\Tests\\" : "src/tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"autoload-dev": {
},
"extra" : {
"laravel" : {
"providers" : [
"KMLaravel\\GeographicalCalculator\\Providers\\GeoServiceProviders"
]
}
}
}