-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.21 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
{
"name": "ama-team/yamligniter",
"description": "Simple tool to configure CodeIgniter 2/3 with YAML",
"license": "MIT",
"authors": [
{
"name": "Etki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AmaTeam\\YamlIgniter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AmaTeam\\YamlIgniter\\Test\\": "tests/"
}
},
"require": {
"symfony/yaml": "^3.2"
},
"require-dev": {
"codeception/codeception": "^2.2",
"allure-framework/allure-codeception": "^1.2",
"satooshi/php-coveralls": "^1.0"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"test:clean": "rm -rf tests/Metadata/Allure/* && rm -rf tests/Report/*",
"test": "bin/codecept run --report --html --xml --coverage --coverage-html --coverage-xml",
"test:report:allure": "allure generate -o tests/Report/Allure -- tests/Metadata/Allure",
"test:report": "composer run-script test:report:allure",
"test:full": "composer run-script test:clean && composer run-script test && composer run-script test:report",
"test:report:coverage:publish:coveralls": "bin/coveralls",
"test:report:coverage:publish": "composer run test:report:coverage:publish:coveralls"
}
}