-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
74 lines (74 loc) · 2.44 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
{
"name": "soluble/japha",
"description": "Soluble PHP Java bridge integration",
"license": "MIT",
"keywords": [
"java",
"bridge",
"phpjavabridge"
],
"homepage": "https://github.com/belgattitude/soluble-japha",
"type": "library",
"authors": [
{
"name": "Sébastien Vanvelthem",
"homepage": "https://github.com/belgattitude"
}
],
"autoload": {
"psr-4": {
"Soluble\\Japha\\": "src/Soluble/Japha"
}
},
"autoload-dev": {
"psr-4": {
"SolubleTest\\Japha\\": "test/src/SolubleTest/Japha"
},
"files": ["test/SolubleTestFactories.php"]
},
"require": {
"ext-xml": "*",
"php": "^7.4.0 || ^8.0.0",
"psr/log": "^1.1"
},
"require-dev" : {
"phpunit/phpunit": "^9.5.4",
"friendsofphp/php-cs-fixer": "v2.18.5",
"monolog/monolog": "^2.2.0",
"phpstan/phpstan": "^0.12.84",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpstan/phpstan-phpunit": "^0.12.17",
"belgattitude/pjbserver-tools": "^3.1.0 || ^4.0",
"infection/infection": "^0.21.5",
"dms/phpunit-arraysubset-asserts": "^v0.2.1"
},
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"fix": [
"@cs-fix"
],
"test": "vendor/bin/phpunit",
"test:mutation": "vendor/bin/infection --configuration=infection.json --test-framework=phpunit --verbose --min-msi=20 --min-covered-msi=25 --threads=4",
"cs-check": "vendor/bin/php-cs-fixer --diff --dry-run -v fix",
"cs-fix": "vendor/bin/php-cs-fixer -v fix",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon src",
"build-doc": "mkdocs build && sami.phar update ./.sami.php",
"apigen": "apigen.phar generate --config=./.apigen.yml",
"sami": "sami.phar update ./.sami.php"
},
"suggest": {
"monolog/monolog": "PSR-3 comptatible logger"
},
"archive": {
"exclude": ["infection.local.json", ".travis", "requirements.txt", "psalm.xml", ".sami.php", "phpstan.neon", "test", "doc", ".travis", ".travis.yml", ".codeclimate.yml", ".coveralls.yml", ".scrutinizer.yml", ".php_cs", ".gitignore", "phpcs.xml"]
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"ocramius/package-versions": true
}
}
}