This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.5 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
61
{
"name": "panosru/fault-manager",
"description": "Fault Manager library by panosru",
"type": "library",
"keywords": ["error handling", "exception handling", "error", "exception", "handler"],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Panagiotis Kosmidis",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.4.1,<7.5.0",
"hoa/exception": "2.17.08.30",
"league/flysystem": "~1.1.4",
"roave/better-reflection": "^3.2",
"zendframework/zend-code": "^3.3"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.5",
"symfony/var-dumper": "^4.0"
},
"autoload": {
"psr-4": {
"Omega\\FaultManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omega\\FaultManagerTests\\": "tests/unit/"
}
},
"scripts": {
"post-update-cmd": "@compiled-clear-all",
"test": [
"@compiled-clear-tests",
"phpunit --no-coverage"
],
"test-coverage": [
"@compiled-clear-tests",
"phpunit"
],
"compiled-clear": "find _compiled/* ! -name '.gitkeep' | xargs rm -rf",
"compiled-clear-tests": "find tests/_compiled/* ! -name '.gitkeep' | xargs rm -rf",
"compiled-clear-all": [
"@compiled-clear",
"@compiled-clear-tests"
]
},
"scripts-descriptions": {
"test": "Running phpunit without coverage",
"test-coverage": "Running phpunit with coverage"
}
}