-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.57 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
{
"name": "typo3/cms-digital-asset-management",
"type": "typo3-cms-extension",
"description": "Digital Asset Management for TYPO3",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "The TYPO3 Community",
"role": "Developer",
"homepage": "https://typo3.org/community/"
}
],
"require": {
"ext-zip": "*",
"psr/http-message": "^1.0.0",
"typo3/cms-backend": "^9.5.5 || 10.0.*@dev",
"typo3/cms-core": "^9.5.5 || 10.0.*@dev",
"typo3/cms-fluid": "^9.5.5 || 10.0.*@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"roave/security-advisories": "dev-master",
"typo3/testing-framework": "^4.9 || ^5.0"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\DigitalAssetManagement\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\DigitalAssetManagement\\Tests\\": "Tests/"
}
},
"config": {
"optimize-autoloader": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"scripts": {
"test:php:unit": [
"phpunit -c Build/UnitTests.xml --log-junit logs/phpunit.xml"
],
"test:php:functional": [
"phpunit -c Build/FunctionalTests.xml --log-junit logs/phpunit_functionals.xml"
],
"test": [
"@test:php:unit",
"@test:php:functional"
],
"cgl": [
"php-cs-fixer fix --diff -v"
],
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/digital_asset_management ] || ln -snvf ../../../../. .build/web/typo3conf/ext/digital_asset_management"
]
},
"extra": {
"typo3/cms": {
"extension-key": "digital_asset_management",
"web-dir": ".build/web"
}
}
}