-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
82 lines (81 loc) · 2.3 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
{
"name": "ayacoo/video-validator",
"type": "typo3-cms-extension",
"version": "4.0.0",
"description": "Checks online videos in TYPO3 for availability",
"homepage": "https://www.ayacoo.de",
"authors": [
{
"name": "Guido Schmechel",
"role": "Developer"
},
{
"name": "Garvin Hicking",
"role": "Contributor"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": ">=8.2 < 8.4",
"typo3/cms-core": "^13.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.57.0",
"helmich/typo3-typoscript-lint": "^3.1.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpstan/phpstan-strict-rules": "^1.5.2",
"phpunit/phpunit": "^11.0.3",
"saschaegerer/phpstan-typo3": "^1.10.0",
"squizlabs/php_codesniffer": "^3.8.1",
"symfony/console": "^7.0",
"symfony/translation": "^7.0",
"typo3/coding-standards": "^0.5.5",
"typo3/testing-framework": "^9.0"
},
"autoload": {
"psr-4": {
"Ayacoo\\VideoValidator\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Ayacoo\\VideoValidator\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/video-validator": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
},
"platform": {
}
},
"scripts": {
"ci:php:cs": "php ./.Build/bin/php-cs-fixer fix --dry-run -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:csfix": "php ./.Build/bin/php-cs-fixer fix -v --config ./Build/php-cs-fixer/php-cs-fixer.php ./",
"ci:php:lint": "find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
"ci:php:sniff": "phpcs Classes Configuration Tests",
"ci:php:stan": "phpstan --no-progress",
"ci:tests:unit": ".Build/bin/phpunit -c Build/phpunit/UnitTests.xml Tests/Unit",
"ci:ts:lint": "typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript",
"ci:xliff:lint": "php Build/bin/console lint:xliff Resources/Private/Language"
},
"extra": {
"typo3/cms": {
"extension-key": "video_validator",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
}
}