forked from jasonw4331/libpmquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.02 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
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": "jasonw4331/libpmquery",
"description": "A library for querying Minecraft Bedrock servers",
"version": "1.0.0",
"type": "library",
"license": "lgpl-3.0-or-later",
"authors": [{
"name": "jasonw4331",
"email": "jasonwynn10@gmail.com"
}],
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"jasonw4331\\libpmquery\\": "/src/jasonw4331/libpmquery"
}
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.14",
"phpstan/phpstan-strict-rules": "^1.5.1",
"phpstan/extension-installer": "^1.3.0",
"friendsofphp/php-cs-fixer": "^3.11"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"make-baseline": "@php ./vendor/bin/phpstan analyze -b phpstan-baseline.php -c phpstan.neon.dist --allow-empty-baseline",
"fix-codestyle": "@php ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --verbose --diff"
},
"extra": {
"virion": {
"spec": "3.0",
"namespace-root": "jasonw4331\\libpmquery"
}
}
}