-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
125 lines (125 loc) · 4.11 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "pagemachine/ai-tools",
"description": "A TYPO3 extension that leverages artificial intelligence to enhance content and accessibility",
"license": "proprietary",
"type": "typo3-cms-extension",
"keywords": [
"typo3",
"extension",
"images",
"ai",
"backend"
],
"authors": [
{
"name": "Mauricio Altamirano Silva",
"email": "[email protected]",
"homepage": "https://pagemachine.de",
"role": "Developer"
},
{
"name": "Francisco Seipel",
"email": "[email protected]",
"homepage": "https://pagemachine.de",
"role": "Developer"
},
{
"name": "Sascha Löffler",
"email": "[email protected]",
"homepage": "https://pagemachine.de",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"aws/aws-sdk-php": "^3.0",
"openai-php/client": "^0.6.0",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"jangregor/phpstan-prophecy": "^1.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"rector/rector": "^1.1",
"saschaegerer/phpstan-typo3": "^1.10",
"sclable/xml-lint": "^0.7.0",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10",
"ssch/typo3-rector": "^2.6"
},
"autoload": {
"psr-4": {
"Pagemachine\\AItools\\": "Classes"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"preferred-install": {
"typo3/cms-core": "source"
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "ai_tools"
}
},
"scripts": {
"build": [
"@composer require --no-progress --ansi --update-with-dependencies typo3/cms-core $TYPO3_VERSION",
"@lint"
],
"build:cleanup": [
"git reset --hard",
"git clean -xfd"
],
"composer:lint": [
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run"
],
"deploy:ter": [
"@build:cleanup",
"@deploy:ter:setup",
"@deploy:ter:upload"
],
"deploy:ter:setup": [
"@composer global require typo3/tailor"
],
"deploy:ter:upload": [
"composer global exec -v -- tailor ter:publish --comment \"$(git tag -l --format='%(contents)' $TAG)\" $TAG"
],
"fix": [
"@composer normalize",
"@php:style:fix",
"@php:rector:fix"
],
"lint": [
"@composer:lint",
"@php:syntax:lint",
"@php:style:lint",
"@php:static:lint",
"@xml:lint",
"@php:rector:lint"
],
"php:rector:fix": "rector",
"php:rector:lint": "rector --dry-run --no-progress-bar",
"php:static:lint": "phpstan analyse --ansi --no-progress --configuration=phpstan.neon",
"php:style:fix": "phpcbf",
"php:style:lint": "phpcs",
"php:syntax:lint": "parallel-lint --show-deprecated --exclude bin --exclude vendor --exclude web .",
"xml:lint": "xmllint --pattern '*.xlf,*.svg' Resources --ansi"
}
}