-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 793 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 793 Bytes
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
{
"name": "chillerlan/php-geojson-helpers",
"description": " PHP 7.2+",
"homepage": "https://github.com/chillerlan/php-geojson-helpers",
"license": "MIT",
"keywords": [
"geojson", "helper"
],
"authors": [
{
"name": "Smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phan/phan": "^5.4"
},
"autoload": {
"psr-4": {
"chillerlan\\GeoJSON\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\GeoJSONTest\\": "tests/"
}
},
"scripts": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}