-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
68 lines (68 loc) · 2.54 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
{
"name": "simonschaufi/php-libkml",
"description": "A library to manipulate KML/KMZ files",
"license": "GPL-3.0",
"keywords": [
"kml",
"gis"
],
"homepage": "https://github.com/simonschaufi/php-libkml",
"support": {
"issues": "https://github.com/simonschaufi/php-libkml/issues",
"source": "https://github.com/simonschaufi/php-libkml"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-simplexml": "*"
},
"require-dev": {
"behat/behat": "^3.16",
"dvdoug/behat-code-coverage": "^5.3.6",
"ergebnis/composer-normalize": "^2.44.0",
"friendsofphp/php-cs-fixer": "^3.65.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.8",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^11.4.4",
"rector/rector": "^1.2.10",
"spaze/phpstan-disallowed-calls": "^4.0",
"squizlabs/php_codesniffer": "^3.11.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LibKml\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LibKml\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:php:php-cs-fixer": "vendor/bin/php-cs-fixer fix -v --dry-run --diff",
"ci:php:rector": "vendor/bin/rector process --dry-run",
"ci:php:stan": "vendor/bin/phpstan analyse --no-progress",
"ci:tests:acceptance": "vendor/bin/behat --no-colors --no-snippets --format junit --out reports",
"ci:tests:unit": "vendor/bin/phpunit --no-coverage --colors=never",
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php:php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"fix:php:rector": "vendor/bin/rector process",
"local:clean": "rm -Rf build",
"local:tests:acceptance": "vendor/bin/behat --colors --no-snippets",
"local:tests:unit": "vendor/bin/phpunit --no-coverage",
"local:tests:unit-coverage": "vendor/bin/phpunit --coverage",
"phpstan:baseline": "vendor/bin/phpstan --generate-baseline --allow-empty-baseline"
}
}