-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.28 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"description": "A Flowpack.JobQueue.Common implementation to support Azure Queue Storage as backend",
"type": "neos-package",
"license": "MIT",
"name": "oniva/jobqueue-azurequeuestorage",
"require": {
"php": ">=8.1",
"neos/flow": "^8.0",
"flowpack/jobqueue-common": "^3.0",
"microsoft/azure-storage-queue": "^1.3",
"microsoft/azure-storage-blob": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"neos/buildessentials": "^9.0",
"mikey179/vfsstream": "^1.6"
},
"scripts": {
"phpstan": "bin/phpstan analyse -c phpstan.neon --memory-limit=-1 --level=4",
"phpunit": "bin/phpunit -c phpunit.xml",
"lint": "./bin/php-cs-fixer fix --dry-run -vvv",
"lint:fix": "./bin/php-cs-fixer fix"
},
"autoload": {
"psr-4": {
"Oniva\\JobQueue\\AzureQueueStorage\\": "Classes/"
}
},
"extra": {
"neos": {
"package-key": "Oniva.JobQueue.AzureQueueStorage"
}
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"allow-plugins": {
"neos/composer-plugin": true
}
}
}