-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "jmikola/geojson",
"type": "library",
"description": "GeoJSON implementation for PHP",
"keywords": ["geo", "geospatial", "geojson"],
"homepage": "https://github.com/jmikola/geojson",
"license": "MIT",
"authors": [
{ "name": "Jeremy Mikola", "email": "jmikola@gmail.com" }
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/polyfill-php80": "^1.25"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"scrutinizer/ocular": "^1.8.1",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^8.0"
},
"autoload": {
"psr-4": {
"GeoJson\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"GeoJson\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}