-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
73 lines (73 loc) · 2.06 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
{
"name": "aoe/aoe_ipauth",
"description": "Authenticates users based on IP address settings",
"type": "typo3-cms-extension",
"keywords": ["TYPO3 CMS", "Authentication"],
"license": ["GPL-2.0+"],
"homepage": "https://github.com/AOEpeople/aoe_ipauth",
"support": {
"issues": "https://github.com/AOEpeople/aoe_ipauth/issues"
},
"require": {
"typo3/cms-core": "^9.5 || ^10.4 || dev-master"
},
"require-dev": {
"nimut/testing-framework": "^5.0",
"nimut/typo3-complete": "^9.5"
},
"authors": [
{
"name": "Tomas Norre Mikkelsen",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"AOE\\AoeIpauth\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"AOE\\AoeIPauth\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/aoe_ipauth ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/aoe_ipauth"
],
"test:unit": [
"[ -e .Build/bin/phpunit ] || composer update",
"TYPO3_PATH_WEB=.Build/Web .Build/bin/phpunit --colors -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit"
],
"test:functional": [
"[ -e .Build/bin/phpunit ] || composer update",
"TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=aoe_ipauth typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional"
],
"test:all": [
"@test:unit",
"@test:functional"
],
"extension-release": [
"rm -rf Tests/",
"rm .gitignore",
"rm .scrutinizer.yml"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}