-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (75 loc) · 2.08 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
74
75
{
"name": "studiomitte/riddle",
"keywords": [
"TYPO3",
"extension",
"riddle",
"rich media"
],
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://studiomitte.com"
}
],
"support": {
"issues": "https://github.com/studiomitte/riddle/issues",
"source": "https://github.com/studiomitte/riddle"
},
"type": "typo3-cms-extension",
"description": "Integration of riddle.com into TYPO3",
"homepage": "https://studiomitte.com",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-backend": "^9 || ^10 || ^11",
"typo3/cms-core": "^9 || ^10 || ^11",
"typo3/cms-frontend": "^9 || ^10 || ^11",
"typo3/cms-fluid": "^9 || ^10 || ^11"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^1",
"typo3/testing-framework": "^6.4 || ^4 || ^5",
"phpunit/phpunit": "^8 || ^7",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"StudioMitte\\Riddle\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"StudioMitte\\Riddle\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/riddle": "self.version"
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"web-dir": ".build/web",
"app-dir": ".build",
"extension-key": "riddle"
}
},
"scripts": {
"php:fix": ".build/vendor/bin/php-cs-fixer --config=Build/.php_cs.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": "php-cs-fixer --diff -v fix",
"ci:tests:unit": "phpunit -c Build/UnitTests.xml",
"ci:tests:functional": "find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; php -d date.timezone=Europe/Berlin .build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml {}';",
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/riddle ] || ln -snvf ../../../../. .build/web/typo3conf/ext/riddle"
]
}
}