-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
{
"name": "flashios09/php-union-types",
"description": "A php class for union types",
"type": "library",
"keywords": [
"type hinting",
"union types",
"mixed types"
],
"license": "MIT",
"authors": [
{
"name": "Saif TURKI",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/flashios09/php-union-types/issues",
"source": "https://github.com/flashios09/php-union-types"
},
"require": {
"php": "^7.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "4.*",
"filp/whoops": "^2.5",
"kahlan/kahlan": "^4.6",
"symfony/var-dumper": "^4.4"
},
"autoload": {
"psr-4": {
"UnionTypes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UnionTypes\\Spec\\": "spec/"
},
"files": [
"spec/functions.php"
]
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs --colors --parallel=16 -p -s --exclude=CakePHP.PHP.SingleQuote --standard=CakePHP src/ spec/",
"cs-fix": "phpcbf --colors --parallel=16 -p -s --exclude=CakePHP.PHP.SingleQuote --standard=CakePHP src/ spec/",
"test": "kahlan --reporter=tree --coverage=4",
"test-coverage": "kahlan --reporter=tree --coverage=4 --clover=clover.xml"
},
"config": {
"sort-packages": true,
"process-timeout": 900
}
}