-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
78 lines (78 loc) · 2.27 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
73
74
75
76
77
78
{
"name": "belgattitude/pjbserver-tools",
"description": "PHP Java bridge server tools",
"license": "MIT",
"keywords": [
"java",
"phpjavabridge",
"server"
],
"homepage": "https://github.com/belgattitude/pjbserver-tools",
"type": "library",
"authors": [
{
"name": "Sébastien Vanvelthem",
"homepage": "https://github.com/belgattitude"
}
],
"autoload": {
"psr-4": {
"PjbServer\\Tools\\": "src/PjbServer/Tools"
}
},
"autoload-dev": {
"psr-4": {
"PjbServerTest\\Tools\\": "test/PjbServerTest/Tools",
"PjbServerTest\\Functionnal\\": "test/PjbServerTest/Functionnal"
}
},
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"symfony/console": "^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.4",
"friendsofphp/php-cs-fixer": "^v2.18.5",
"phpstan/phpstan": "^0.12.83",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpstan/phpstan-strict-rules": "^0.12.9",
"composer/composer": "^2.0.12",
"soluble/japha": "^2.5.0 || ^3.0.0",
"captainhook/captainhook": "^5.7.0",
"captainhook/plugin-composer": "^5.2.4"
},
"suggest": {
"monolog/monolog": "Monolog or other PSR-3 compatible logger"
},
"scripts": {
"post-install-cmd": [
"PjbServer\\Tools\\Composer\\Installer::postInstall"
],
"post-update-cmd": [
"PjbServer\\Tools\\Composer\\Installer::postUpdate"
],
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse -l 5 -c phpstan.neon src",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"cs:check": "vendor/bin/php-cs-fixer fix --dry-run",
"pjbserver:start": "./bin/pjbserver-tools -vvv pjbserver:start ./config/pjbserver.config.php.dist",
"pjbserver:stop": "./bin/pjbserver-tools -vvv pjbserver:stop ./config/pjbserver.config.php.dist",
"pjbserver:restart": "./bin/pjbserver-tools -vvv pjbserver:restart ./config/pjbserver.config.php.dist",
"pjbserver:status": "./bin/pjbserver-tools -vvv pjbserver:status ./config/pjbserver.config.php.dist"
},
"bin": ["bin/pjbserver-tools"],
"archive": {
"exclude": [
"test",
"doc",
"tools",
".travis.yml",
".codeclimate.yml",
".coveralls.yml",
".scrutinizer.yml",
".php_cs",
".gitignore"
]
}
}