-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·66 lines (66 loc) · 2.63 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
{
"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"
},
"files": [
"applications/ANDS/Helpers.php",
"engine/helpers/engine_helper.php",
"engine/helpers/presentation_helper.php",
"engine/helpers/shared_helper.php",
"tests/RegistryTestClass.php",
"tests/CommandsTestClass.php"
]
},
"require": {
"illuminate/database": "5.2.*",
"predis/predis": "^1.1",
"symfony/stopwatch": "^3.1",
"monolog/monolog": "^1.19",
"jaybizzle/crawler-detect": "1.*",
"vlucas/phpdotenv": "^2.4",
"symfony/console": "^3.2",
"minhd/solr-client": "dev-master",
"elasticsearch/elasticsearch": "~2.0",
"javibravo/simpleue": "dev-master",
"cebe/markdown": "~1.1.1",
"ramsey/uuid": "^3.7",
"graphaware/neo4j-php-client": "^4.0",
"illuminate/cache": "~5.2.0",
"symfony/cache": "^3.4",
"guzzle/http": "^3.9",
"abraham/twitteroauth": "^0.9.2",
"facebook/graph-sdk": "^5.6",
"google/apiclient": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"ext-mysqli": "*"
}
}