|
1 | 1 | { |
2 | 2 | "name": "cakephp/queue", |
3 | 3 | "description": "Queue plugin for CakePHP", |
4 | | - "keywords": ["cakephp", "queue"], |
5 | | - "homepage": "https://github.com/cakephp/queue", |
6 | | - "type": "cakephp-plugin", |
7 | 4 | "license": "MIT", |
| 5 | + "type": "cakephp-plugin", |
| 6 | + "keywords": [ |
| 7 | + "cakephp", |
| 8 | + "queue" |
| 9 | + ], |
8 | 10 | "authors": [ |
9 | 11 | { |
10 | 12 | "name": "CakePHP Community", |
11 | 13 | "homepage": "https://github.com/cakephp/queue/graphs/contributors" |
12 | 14 | } |
13 | 15 | ], |
| 16 | + "homepage": "https://github.com/cakephp/queue", |
14 | 17 | "support": { |
15 | 18 | "issues": "https://github.com/cakephp/queue/issues", |
16 | 19 | "forum": "https://stackoverflow.com/tags/cakephp", |
|
29 | 32 | "enqueue/fs": "^0.10", |
30 | 33 | "phpunit/phpunit": "^10.1.0" |
31 | 34 | }, |
| 35 | + "suggest": { |
| 36 | + "cakephp/bake": "Required if you want to generate jobs.", |
| 37 | + "cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs." |
| 38 | + }, |
32 | 39 | "autoload": { |
33 | 40 | "psr-4": { |
34 | 41 | "Cake\\Queue\\": "src/" |
35 | 42 | } |
36 | 43 | }, |
37 | 44 | "autoload-dev": { |
38 | 45 | "psr-4": { |
39 | | - "Cake\\Test\\": "vendor/cakephp/cakephp/tests/", |
40 | 46 | "Cake\\Queue\\Test\\": "tests/", |
| 47 | + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/", |
41 | 48 | "TestApp\\": "tests/test_app/src/" |
42 | 49 | } |
43 | 50 | }, |
44 | | - "suggest": { |
45 | | - "cakephp/bake": "Required if you want to generate jobs.", |
46 | | - "cakephp/migrations": "Needed for running the migrations necessary for using Failed Jobs." |
| 51 | + "config": { |
| 52 | + "allow-plugins": { |
| 53 | + "dealerdirect/phpcodesniffer-composer-installer": true |
| 54 | + }, |
| 55 | + "sort-packages": true |
47 | 56 | }, |
48 | 57 | "scripts": { |
49 | 58 | "check": [ |
|
63 | 72 | "stan-setup": "phive install", |
64 | 73 | "test": "phpunit", |
65 | 74 | "test-coverage": "phpunit --coverage-clover=clover.xml" |
66 | | - }, |
67 | | - "config": { |
68 | | - "sort-packages": true, |
69 | | - "allow-plugins": { |
70 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
71 | | - } |
72 | 75 | } |
73 | 76 | } |
0 commit comments