-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 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
{
"name": "mbolli/php-geobuf",
"description": "PHP library for the geobuf compact geospatial format",
"type": "library",
"license": "ISC",
"authors": [
{
"name": "Michael Bolli",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"google/protobuf": "^v4"
},
"autoload": {
"psr-4": {
"MBolli\\PhpGeobuf\\": "src/",
"GPBMetadata\\": "src/GPBMetadata"
},
"exclude-from-classmap": ["tests/"]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"pestphp/pest": "^v3",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"lint": "@fix --dry-run",
"lint-diff": "@fix --dry-run --diff",
"fix": "php-cs-fixer fix --ansi --allow-risky=yes -v --config=./.php-cs-fixer.php",
"test": "pest",
"analyse": "phpstan analyse -c .phpstan.neon"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}