This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
59 lines (59 loc) · 1.71 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
{
"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": "alejandro@alejandrocelaya.com"
}
],
"keywords": [
"type",
"doctrine",
"enum"
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/dbal": "^2.12 || ^3.0",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"infection/infection": "^0.20",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.52",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-master",
"shlinkio/php-coding-standard": "~2.1.1"
},
"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": "phpdbg -qrr vendor/bin/phpunit --colors=always",
"test:pretty": "@test --coverage-html=build/html",
"test:ci": "@test --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": "@infect --coverage=build",
"infect:show": "@infect --show-mutations"
}
}