-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·56 lines (51 loc) · 1.74 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
{
"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\\": "applications/ANDS"
},
"files": [
"applications/ANDS/Helpers.php",
"engine/helpers/engine_helper.php"
]
},
"require": {
"monolog/monolog": "^1.19",
"ramsey/uuid": "3.7.1",
"jaybizzle/crawler-detect": "1.*",
"vlucas/phpdotenv": "^3.5",
"google/recaptcha": "~1.1",
"google/apiclient": "2.4.0",
"google/apiclient-services": "v0.121",
"google/auth": "v1.6.1",
"facebook/graph-sdk": "^5.6",
"illuminate/support": "~5.2.0",
"au-research/vocabs-php-client": "@dev"
},
"repositories": [
{
"type": "path",
"url": "/opt/ands/vocabs-clients/php",
"options": {
"symlink": false
}
}
]
}