-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 2.04 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
{
"name": "jweiland/mediapool",
"type": "typo3-cms-extension",
"description": "Embed your favorite YouTube Videos and Playlists. Import description, title and more by just pasting the YouTube link.",
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"TYPO3 CMS",
"mediapool",
"youtube",
"gallery"
],
"homepage": "https://jweiland.net",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/jweiland-net/mediapool/issues",
"source": "https://github.com/jweiland-net/mediapool"
},
"require": {
"typo3/cms-core": "^10.4.36 || ^11.5.23"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "^3.10",
"nimut/testing-framework": "^6.0"
},
"replace": {
"typo3-ter/mediapool": "self.version"
},
"autoload": {
"psr-4": {
"JWeiland\\Mediapool\\": "Classes"
}
},
"config": {
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "mediapool",
"app-dir": ".build",
"web-dir": ".build/public"
}
},
"scripts": {
"php:fix": ".build/vendor/bin/php-cs-fixer --config=Build/php-cs-fixer/config.php fix Classes Tests",
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": ".build/vendor/bin/php-cs-fixer --config=Build/php-cs-fixer/config.php fix --dry-run -v --show-progress=dots --diff Classes Tests",
"ci:tests:unit": ".build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit",
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.build/public/typo3conf/ext/mediapool\") || symlink(__DIR__,$extFolder);'"
],
"post-autoload-dump": [
"@link-extension"
]
}
}