-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.dev.json
50 lines (45 loc) · 1.87 KB
/
composer.dev.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
{
"name": "au-research/ands-researchdata-registry",
"description": "Core ANDS codebase which includes a metadata registry, front-end portal and access management system. This software currently powers the ANDS National Collections Registry and Research Data Australia",
"authors": [
{
"name": "Minh Duc Nguyen",
"email": "[email protected]"
}
],
"scripts": {
"post-update-cmd": "@dumpAutoload",
"post-install-cmd": "@dumpAutoload",
"test": [
"@clearTestReports",
"vendor/bin/phpunit --log-junit tests-reports/junit.xml --coverage-xml tests-reports/coverage/xml --coverage-html tests-reports/coverage/html --coverage-clover tests-reports/coverage/clover.xml"
],
"clearTestReports": "rm -rf tests-reports/*",
"dumpAutoload": "composer dump-autoload --optimize"
},
"autoload" : {
"psr-4": {
"ANDS\\API\\Registry\\": "applications/api/registry",
"ANDS\\API\\Registry\\Handler\\": "applications/api/registry/handlers/",
"ANDS\\API\\Log\\": "applications/api/log",
"ANDS\\API\\Log\\Handler\\": "applications/api/log/handlers/",
"ANDS\\API\\Log\\Indexer\\": "applications/api/log/indexers/",
"ANDS\\API\\Task\\": "applications/api/task/models",
"ANDS\\": "applications/ANDS",
"ANDS\\API\\DOI\\": "applications/api/doi",
"ANDS\\Test\\": "applications/test/core/models"
}
},
"require": {
"illuminate/database": "5.2.*",
"au-research/ands-doi-service": "dev-develop",
"predis/predis": "^1.1",
"symfony/stopwatch": "^3.1",
"monolog/monolog": "^1.19",
"jaybizzle/crawler-detect": "1.*",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
}
}