-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 822 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 822 Bytes
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
{
"description": "Integration of prunner (an embedded pipeline task runner) in Neos",
"type": "neos-package",
"name": "flowpack/prunner",
"license": "MIT",
"require": {
"neos/flow": "*",
"neos/neos": "^7.0 || ^8.0",
"guzzlehttp/guzzle": "^7.3",
"firebase/php-jwt": "^7.0"
},
"autoload": {
"psr-4": {
"Flowpack\\Prunner\\": "Classes/"
}
},
"bin": [
"Resources/Private/Scripts/prunner"
],
"extra": {
"neos": {
"package-key": "Flowpack.Prunner"
},
"neos/flow": {
"post-install": "Flowpack\\Prunner\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-update": "Flowpack\\Prunner\\Composer\\InstallerScripts::postUpdateAndInstall"
}
}
}