-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·87 lines (87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "svenpetersen/instagram",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Sven Petersen",
"email": "[email protected]"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": ">=8.2",
"psr/http-factory": "^1.0",
"symfony/console": ">=7.0",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4"
},
"suggest": {
"typo3/cms-scheduler": "To setup the cronjobs as tasks from within the backend"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.24",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"helmich/typo3-typoscript-lint": "^3.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.4",
"typo3/coding-standards": "^0.8.0"
},
"autoload": {
"psr-4": {
"SvenPetersen\\Instagram\\": "Classes/"
}
},
"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": "instagram",
"web-dir": ".Build/public"
}
},
"scripts": {
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:coverage": [
"@ci:coverage:functional"
],
"ci:lint:typoscript": [
"typoscript-lint --ansi -n --fail-on-warnings -vvv Configuration/TypoScript"
],
"ci:php:cs-fixer": "php-cs-fixer fix -v --dry-run --using-cache no --diff",
"ci:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:stan": "phpstan --no-progress",
"ci:test": [
"@ci:lint:typoscript",
"@ci:php:cs-fixer",
"@ci:php:stan"
],
"fix:php:cs-fixer": [
"php-cs-fixer fix -v --using-cache no"
],
"prepare-release": [
"rm .gitignore",
"rm -rf .Build",
"rm -rf .github",
"rm -rf Resources",
"rm .editorconfig",
"rm .gitattributes",
"rm .php-cs-fixer.php",
"rm CONTRIBUTING.rst"
]
}
}