-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
63 lines (63 loc) · 1.61 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
{
"name": "yaroslavche/bitmask",
"description": "BitMask, EnumBitMask",
"license": "MIT",
"keywords": [
"bit",
"bitmask",
"binary",
"bitwise",
"php",
"php8"
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpbench/phpbench": "*",
"phpstan/phpstan": "*",
"thecodingmachine/phpstan-strict-rules": "*",
"infection/infection": "*",
"vimeo/psalm": "^5.22",
"psalm/plugin-phpunit": "^0.18.4",
"friendsofphp/php-cs-fixer": "^3.51"
},
"authors": [
{
"name": "yaroslavche",
"email": "yaroslav429@gmail.com"
}
],
"autoload": {
"psr-4": {
"BitMask\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitMask\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs-check": "php-cs-fixer check --diff",
"phpcs-fix": "php-cs-fixer fix --diff",
"phpstan": "phpstan analyse src/ -c phpstan.neon --level=9 --no-progress -vv --memory-limit=-1",
"psalm": "psalm",
"phpbench": "phpbench run benchmarks --report=default",
"phpunit": "phpunit",
"infection": "XDEBUG_MODE=coverage infection --min-msi=100 --min-covered-msi=100 --log-verbosity=all",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --coverage-html ./build/coverage/html --coverage-clover ./build/coverage/clover.xml",
"ci:pack": [
"@phpcs-check", "@phpstan", "@psalm", "@phpunit", "@infection", "@coverage"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true
}
}
}