forked from MatanYadaev/laravel-eloquent-spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.35 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
{
"name": "matanyadaev/laravel-eloquent-spatial",
"description": "Spatial library for Laravel",
"homepage": "https://github.com/matanyadaev/laravel-eloquent-spatial",
"license": "MIT",
"authors": [
{
"name": "Matan Yadaev",
"email": "matan.yed@gmail.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-pdo": "*",
"laravel/framework": "^8.0|^9.0",
"phayes/geophp": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"jubeki/laravel-code-style": "^1.0",
"nunomaduro/larastan": "^1.0|^2.0",
"orchestra/testbench": "^6.23|^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2"
},
"autoload": {
"psr-4": {
"MatanYadaev\\EloquentSpatial\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MatanYadaev\\EloquentSpatial\\Tests\\": "tests"
}
},
"scripts": {
"php-cs-fixer": "./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=2G",
"pest": "./vendor/bin/pest",
"pest-coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage --min=100"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}