-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 2.87 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
{
"name": "eliashaeussler/typo3-solver",
"description": "Extension for TYPO3 CMS to extend TYPO3's exception handling with AI generated solutions",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/eliashaeussler/typo3-solver/issues",
"chat": "https://typo3.slack.com/archives/C04Q3440HS6",
"source": "https://github.com/eliashaeussler/typo3-solver",
"docs": "https://docs.typo3.org/p/eliashaeussler/typo3-solver/main/en-us/Index.html"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-mbstring": "*",
"erusev/parsedown": "^1.7",
"guzzlehttp/guzzle": "^7.5",
"openai-php/client": "^0.4.1 || ^0.5.0 || ^0.6.0 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"spatie/backtrace": "^1.2",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^5.4 || ^6.0 || ^7.0",
"typo3/cms-core": "~11.5.0 || ~12.4.0 || ~13.4.0",
"typo3fluid/fluid": "^2.15 || ^4.0"
},
"require-dev": {
"ext-dom": "*",
"eliashaeussler/version-bumper": "^1.2",
"phpunit/phpcov": "^9.0 || ^10.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"typo3/testing-framework": "^7.0.2 || ^8.2.3 || ^9.0.1"
},
"autoload": {
"psr-4": {
"EliasHaeussler\\Typo3Solver\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"EliasHaeussler\\Typo3Solver\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"php-http/discovery": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "solver",
"web-dir": ".build/web"
}
},
"scripts": {
"post-install-cmd": [
"@composer -d Tests/CGL install"
],
"cgl": "@composer -d Tests/CGL --",
"docs": [
"@docs:cleanup",
"@docs:build",
"@docs:open"
],
"docs:build": "docker compose run --rm docs",
"docs:cleanup": "rm -rf .build/docs",
"docs:open": "open .build/docs/Index.html",
"test": [
"@test:functional",
"@test:unit"
],
"test:coverage": [
"@test:coverage:functional",
"@test:coverage:unit",
"@test:coverage:merge"
],
"test:coverage:functional": "phpunit -c phpunit.functional.xml",
"test:coverage:merge": "phpcov merge --html .build/coverage/html/_merged --clover .build/coverage/clover.xml --text php://stdout .build/coverage/php",
"test:coverage:unit": "phpunit -c phpunit.unit.xml",
"test:functional": "@test:coverage:functional --no-coverage",
"test:unit": "@test:coverage:unit --no-coverage"
}
}