-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.14 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
{
"name": "oseille/booting",
"description": "Abstract part of a booting app process.",
"keywords": [
"chain of responsability",
"booting",
"boostrapping",
"bootloader"
],
"homepage": "https://github.com/oseille/booting",
"readme": "README.md",
"time": "2020-05-09",
"license": "MIT",
"support": {
"issues": "https://github.com/oseille/booting/issues",
"source": "https://github.com/oseille/booting",
"rss": "https://github.com/oseille/booting/releases.atom"
},
"authors": [
{
"name": "Olivier Jullien",
"homepage": "https://github.com/ojullien",
"email": "ojullien@netcourrier.com"
}
],
"require": {
"php": "^7.4",
"psr/container": "^1.0"
},
"autoload": {
"psr-4": {
"Oseille\\Booting\\": "src/"
}
},
"require-dev": {
"phpunit/php-invoker": "^3.0",
"phpunit/phpunit": "^9.1"
},
"autoload-dev": {
"psr-4": {
"OseilleTest\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"test": "vendor/bin/phpunit --configuration .phpunit.xml --coverage-clover build/clover.xml"
}
}