-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathcomposer.json
executable file
·84 lines (84 loc) · 2.69 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
{
"name": "dereuromark/cakephp-queue",
"description": "The Queue plugin for CakePHP provides deferred task execution.",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"queue",
"deferred tasks",
"background"
],
"authors": [
{
"name": "Mark Scherer",
"homepage": "https://www.dereuromark.de",
"role": "Maintainer"
},
{
"name": "Contributors",
"homepage": "https://github.com/dereuromark/cakephp-queue/graphs/contributors",
"role": "Contributor"
}
],
"homepage": "https://github.com/dereuromark/cakephp-queue",
"support": {
"source": "https://github.com/dereuromark/cakephp-queue"
},
"require": {
"php": ">=8.1",
"brick/varexporter": "^0.4.0 || ^0.5.0",
"cakephp/cakephp": "^5.0.0"
},
"require-dev": {
"cakedc/cakephp-phpstan": "^3.0.0",
"cakephp/bake": "^3.0.1",
"cakephp/migrations": "^4.0.1",
"dereuromark/cakephp-ide-helper": "^2.0.0",
"dereuromark/cakephp-templating": "^0.2.1",
"dereuromark/cakephp-tools": "^3.0.0",
"dereuromark/cakephp-dto": "^2.1.0",
"fig-r/psr2r-sniffer": "dev-master",
"friendsofcake/search": "^7.0.0",
"phpunit/phpunit": "^10.1"
},
"suggest": {
"dereuromark/cakephp-ide-helper": "For maximum IDE support, especially around createJob() usage.",
"dereuromark/cakephp-tools": "For the QueueEmailTask (if you don't write your own task here). Also for admin backend.",
"friendsofcake/search": "For admin backend and filtering of current jobs."
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Queue\\": "src/",
"Queue\\Test\\Fixture\\": "tests/Fixture/"
}
},
"autoload-dev": {
"psr-4": {
"Foo\\": "tests/test_app/plugins/Foo/src/",
"Queue\\Test\\TestCase\\": "tests/TestCase/",
"TestApp\\": "tests/test_app/src/"
}
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"process-timeout": 600,
"sort-packages": true
},
"scripts": {
"cs-check": "phpcs --extensions=php",
"cs-fix": "phpcbf --extensions=php",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"stan": "phpstan analyse",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.10.0 && mv composer.backup composer.json",
"stan-tests": "phpstan analyse -c tests/phpstan.neon",
"test": "phpunit",
"test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml"
}
}