forked from yaroslavche/BitMaskType
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.25 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
{
"name": "yaroslavche/bitmasktype",
"description": "BitMaskType",
"license": "MIT",
"keywords": [
"bit",
"bitmask",
"binary",
"bitwise",
"php",
"php7",
"doctrine"
],
"require-dev": {
"phpunit/phpunit": "^8.1",
"phpstan/phpstan": "^0.11.8",
"squizlabs/php_codesniffer": "^3.4",
"thecodingmachine/phpstan-strict-rules": "^0.11.1",
"infection/infection": "^0.13.1",
"roave/backward-compatibility-check": "^3.0"
},
"authors": [
{
"name": "yaroslavche",
"email": "yaroslav429@gmail.com"
}
],
"require": {
"php": "^7.2",
"doctrine/dbal": "^2.9",
"yaroslavche/bitmask": "^0.1.1"
},
"autoload": {
"psr-4": {
"BitMask\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"BitMask\\Tests\\": "tests/"
}
},
"scripts": {
"cscheck": "phpcs",
"csfix": "phpcbf",
"phpstan": "phpstan analyse src/ -c phpstan.neon --level=7 --no-progress -vvv --memory-limit=1024M",
"phpunit": "phpunit",
"infection": "infection --min-msi=50 --min-covered-msi=70 --log-verbosity=all",
"clover": "phpunit --coverage-clover clover.xml",
"bccheck": "roave-backward-compatibility-check"
},
"minimum-stability": "dev",
"prefer-stable": true
}