-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·109 lines (109 loc) · 2.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dskzpt/youtube2news",
"type": "typo3-cms-extension",
"description": "TYPO3 extension to import youtube video/channels as EXT:news articles",
"homepage": "https://www.dauskonzept.de",
"keywords": [
"TYPO3",
"extension",
"youtube",
"news"
],
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Dauskonzept GmbH",
"email": "info@dauskonzept.de"
},
{
"name": "Sven Petersen",
"email": "sp@dauskonzept.de"
}
],
"require": {
"php": ">=7.4",
"georgringer/news": "^9.0 || ^10.0",
"symfony/console": "^5.4",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.24",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.4",
"typo3/coding-standards": "^0.6.1",
"typo3/testing-framework": "^6.16"
},
"autoload": {
"psr-4": {
"DSKZPT\\YouTube2News\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"DSKZPT\\YouTube2News\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/vendor/bin"
},
"extra": {
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "youtube2news",
"web-dir": ".Build/public"
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:coverage": [
"@ci:coverage:functional"
],
"ci:coverage:functional": "phpunit -c Tests/Functional/phpunit.xml -d memory_limit=-1 --coverage-php=coverage/functional.cov Tests/Functional",
"ci:coverage:merge": "phpcov merge --clover=./coverage/clover.xml coverage/",
"ci:coverage:unit": "phpunit -c Tests/Unit/phpunit.xml -d memory_limit=-1 --coverage-php=coverage/unit.cov Tests/Unit",
"ci:php:cs-fixer": "php-cs-fixer fix -v --dry-run --using-cache no --diff",
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:stan": "phpstan --no-progress",
"ci:test": [
"@ci:php:cs-fixer",
"@ci:php:stan",
"@ci:test:unit",
"@ci:test:functional"
],
"ci:test:functional": [
"phpunit -c Tests/Functional/phpunit.xml -d memory_limit=-1"
],
"ci:test:unit": [
"phpunit -c Tests/Unit/phpunit.xml -d memory_limit=-1"
],
"fix:php:cs-fixer": [
"php-cs-fixer fix -v --using-cache no"
],
"prepare-release": [
"rm .gitignore",
"rm -rf .Build",
"rm -rf .github",
"rm -rf Tests",
"rm -rf Resources",
"rm .editorconfig",
"rm .gitattributes",
"rm .php-cs-fixer.php",
"rm CONTRIBUTING.rst"
]
}
}