-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
62 lines (62 loc) · 1.61 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
62
{
"name": "aura/project-kernel",
"type": "library",
"description": "The shared kernel files for an Aura project.",
"keywords": [
"project",
"kernel"
],
"homepage": "https://github.com/auraphp/Aura.Project_Kernel",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Aura.Project_Kernel Contributors",
"homepage": "https://github.com/auraphp/Aura.Project_Kernel/contributors"
}
],
"require": {
"php": ">=7.2.0",
"aura/di": "~4.0",
"psr/log": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Aura\\Project_Kernel\\": "src/",
"Aura\\Project_Kernel\\_Config\\": "config/"
}
},
"extra": {
"aura": {
"type": "kernel",
"config": {
"common": "Aura\\Project_Kernel\\_Config\\Common"
}
},
"branch-alias": {
"dev-develop-2": "2.0.x-dev"
}
},
"autoload-dev": {
"psr-4": {
"Aura\\Project_Kernel\\": "tests/",
"Aura\\Di\\": "vendor/aura/di/tests/"
}
},
"scripts": {
"test": [
"@composer install",
"./vendor/bin/phpunit"
],
"coverage": [
"php -dzend_extension=xdebug.so -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"
]
},
"scripts-descriptions": {
"test": "Run unit tests",
"coverage": "Generate test coverage report"
}
}