-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "awin/report-task",
"description": "AWin candidate report task",
"authors": [
{
"name": "Peng Yue",
"email": "penyue@gmail.com"
}
],
"type": "project",
"require": {
"symfony/symfony": "^3.3",
"symfony/dependency-injection": "^3.2",
"symfony/config": "^3.2",
"nelmio/cors-bundle": "^1.5",
"nelmio/api-doc-bundle": "^2.13",
"friendsofsymfony/rest-bundle": "^2.1",
"jms/serializer-bundle": "^1.4",
"willdurand/faker-bundle": "^1.3",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"symfony/monolog-bundle": "^3.1",
"league/csv": "^8.2",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "*",
"monolog/monolog": "^1.22"
},
"require-dev": {
"phpunit/phpunit": "^6",
"whatthejeff/nyancat-phpunit-resultprinter": "^2.0",
"laravel/homestead": "^5.2",
"behat/behat": "3.2.*",
"zalas/behat-no-extension": "^1.0"
},
"autoload": {
"files": [
"app/AppKernel.php"
],
"psr-4": {
"Awin\\ReportTask\\App\\": "app/",
"Awin\\ReportTask\\": "src/"
}
},
"autoload-dev": {
"files": [
"app/AppKernel.php"
],
"psr-4": {
"Awin\\ReportTask\\Behat\\": "features/",
"Awin\\ReportTask\\UnitTest\\": "tests/unit/src/",
"Awin\\ReportTask\\IntegrationTest\\": "tests/integration/src/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit tests --printer PHPUnit\\\\TextUI\\\\ResultPrinter --coverage-clover=var/code-coverage/phpcov-unit.xml --coverage-html=var/code-coverage/phpcov-unit.html",
"vendor/bin/behat "
],
"symfony-scripts": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"branch-alias": null
}
}