forked from acelaya/doctrine-enum-type
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (57 loc) · 1.77 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
{
"name": "acelaya/doctrine-enum-type",
"description": "A custom Doctrine type that maps column values to enum objects using myclabs/php-enum",
"license": "MIT",
"authors": [
{
"name": "Alejandro Celaya",
"email": "[email protected]"
}
],
"keywords": [
"type",
"doctrine",
"enum"
],
"require": {
"php": "^7.2",
"doctrine/dbal": "^2.6",
"myclabs/php-enum": "^1.4"
},
"require-dev": {
"infection/infection": "^0.15.0",
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^8.0",
"shlinkio/php-coding-standard": "~2.0.0"
},
"autoload": {
"psr-4": {
"Acelaya\\Doctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Acelaya\\Test\\Doctrine\\": "test"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"ci": [
"@cs",
"@stan",
"@test:ci",
"@infect:ci"
],
"cs": "phpcs --colors",
"cs:fix": "phpcbf",
"stan": "phpstan analyse src/ --level=8",
"test": "phpunit --colors=always",
"test:pretty": "phpunit --colors=always --coverage-html=build/html",
"test:ci": "phpdbg -qrr vendor/bin/phpunit --colors=always --coverage-clover=build/clover.xml --coverage-xml=build/coverage-xml --log-junit=build/junit.xml",
"infect": "infection --threads=4 --min-msi=90 --log-verbosity=default --only-covered",
"infect:ci": "infection --threads=4 --min-msi=90 --log-verbosity=default --only-covered --coverage=build",
"infect:show": "infection --threads=4 --min-msi=90 --log-verbosity=default --only-covered --show-mutations"
}
}