-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 2.63 KB
/
Copy pathcomposer.json
File metadata and controls
112 lines (112 loc) · 2.63 KB
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
{
"name": "undkonsorten/taskqueue",
"description": "Provides a task queue for other extensions to use.",
"license": [
"GPL-2.0+"
],
"type": "typo3-cms-extension",
"keywords": [
"email",
"TYPO3"
],
"authors": [
{
"name": "Eike Starkmann",
"email": "starkmann@undkonsorten.com",
"homepage": "http://undkonsorten.com",
"role": "Developer"
},
{
"name": "Thomas Alboth",
"email": "alboth@undkonsorten.com",
"homepage": "http://undkonsorten.com",
"role": "Product Owner"
}
],
"homepage": "https://www.undkonsorten.com",
"support": {
"issues": "https://github.com/undkonsorten/taskqueue/issues"
},
"require": {
"php": "^8.3",
"ext-json": "*",
"symfony/console": "^5.4 || ^6.0 || ^7",
"typo3/cms-backend": "^13.4 || ^14.3",
"typo3/cms-core": "^13.4 || ^14.3",
"typo3/cms-extbase": "^13.4 || ^14.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"j13k/yaml-lint": "^1.1",
"phpmd/phpmd": "^2.15",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^11.5",
"typo3/cms-dashboard": "^13.4 || ^14.3",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^9.5",
"undkonsorten/taskqueue-test": "@dev"
},
"suggest": {
"ext-pcntl": "Handling of signals, to have more robust task execution",
"typo3/cms-dashboard": "Allows more advanced logging of the application flow"
},
"repositories": [
{
"type": "path",
"url": "Tests/Functional/Fixtures/Extensions/taskqueue_test"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Undkonsorten\\Taskqueue\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Undkonsorten\\Taskqueue\\Tests\\": "Tests/"
},
"exclude-from-classmap": [
"Tests/Functional/Fixtures/"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"lock": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"platform": {
"php": "8.3.0"
}
},
"extra": {
"branch-alias": {
"dev-develop": "9.6.x-dev"
},
"typo3/cms": {
"extension-key": "taskqueue",
"web-dir": ".Build/public"
}
},
"scripts": {
"post-install-cmd": [
"@composer:clean-app-var"
],
"post-update-cmd": [
"@composer:clean-app-var"
],
"composer:clean-app-var": "@php -r \"is_dir('var') && shell_exec('rm -rf var'); is_dir('packages') && shell_exec('rm -rf packages');\""
}
}