This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.97 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
{
"name": "gerh/evecorp",
"type": "typo3-cms-extension",
"description": "EVECorp: TYPO3 based tool to manage your EVE corporation",
"homepage": "https://github.com/henning-gerhardt/evecorp",
"license": ["GPL-3.0+"],
"keywords": ["TYPO3 CMS", "TYPO3 Extension", "EVE Online", "Corporation"],
"support": {
"issues": "https://github.com/henning-gerhardt/evecorp/issues"
},
"authors": [
{
"name": "Henning Gerhardt",
"email": "[email protected]"
}
],
"require": {
"typo3/cms": "^8.7",
"3rdpartyeve/phealng": "^2.3"
},
"require-dev": {
"typo3/testing-framework": "^1.1",
"phpunit/phpunit": "^6.4",
"codacy/coverage": "dev-master"
},
"replace": {
"evecorp": "self.version"
},
"autoload": {
"psr-4": {
"Gerh\\Evecorp\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Gerh\\Evecorp\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/core/Tests/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"scripts": {
"post-autoload-dump": [
"[ -d .build/web/typo3conf/ext ] || mkdir -p .build/web/typo3conf/ext",
"[ -L .build/web/typo3conf/ext/evecorp ] || ln -snvf ../../../../. .build/web/typo3conf/ext/evecorp"
],
"test": "export TYPO3_PATH_WEB=`pwd`/.build/web; export typo3DatabaseName='evecorp'; export typo3DatabaseHost='127.0.0.1'; export typo3DatabaseUsername='evecorp'; export typo3DatabasePassword=''; .build/bin/phpunit --colors -c .build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml Tests/Unit/ --whitelist Classes/ --coverage-clover .build/clover.xml"
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
}
}
}