-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.45 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": "kalibora/doctrine-type-tinyint",
"description": "Doctrine custom type for MySQL tinyint",
"keywords": ["doctrine"],
"license": "MIT",
"authors": [
{
"name": "Toshiyuki Fujita",
"email": "kalibora@gmail.com"
}
],
"autoload": {
"psr-4": {"Kalibora\\DoctrineType\\": "src"}
},
"autoload-dev": {
"psr-4": {"Kalibora\\DoctrineType\\": "tests"}
},
"scripts": {
"qa": [
"@cs",
"@analyse",
"@test"
],
"test" : [
"phpunit"
],
"analyse" : [
"phpstan analyse -l max --no-progress src tests"
],
"analyze" : [
"@analyse"
],
"cs": [
"php-cs-fixer fix -v --dry-run --diff"
],
"cs-fix": [
"php-cs-fixer fix"
]
},
"require": {
"php": "^7.3 || ^8.0",
"doctrine/dbal": "^2|^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}