-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
72 lines (72 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "phpmyadmin/shapefile",
"description": "ESRI ShapeFile library for PHP",
"license": "GPL-2.0-or-later",
"keywords": ["shapefile", "shp", "geo", "geospatial", "dbf", "ESRI", "shape"],
"homepage": "https://github.com/phpmyadmin/shapefile",
"authors": [
{
"name": "The phpMyAdmin Team",
"email": "[email protected]",
"homepage": "https://www.phpmyadmin.net/team/"
}
],
"support": {
"issues": "https://github.com/phpmyadmin/shapefile/issues",
"source": "https://github.com/phpmyadmin/shapefile"
},
"scripts": {
"phpcbf": "@php phpcbf",
"phpcs": "@php phpcs",
"phpstan": "@php phpstan analyse",
"phpunit": "@php phpunit --color=always",
"psalm": "@php psalm",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
],
"update:baselines": [
"@php phpstan analyse --generate-baseline"
]
},
"require": {
"php": "^8.2"
},
"suggest": {
"ext-dbase": "For dbf files parsing"
},
"require-dev": {
"phpmyadmin/coding-standard": "^4.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.3",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.15"
},
"autoload": {
"psr-4": {
"PhpMyAdmin\\ShapeFile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpMyAdminTest\\ShapeFile\\": "tests"
}
},
"config":{
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}