|
1 | 1 | { |
2 | 2 | "name": "dereuromark/cakephp-queue", |
3 | | - "type": "cakephp-plugin", |
4 | 3 | "description": "The Queue plugin for CakePHP provides deferred task execution.", |
| 4 | + "license": "MIT", |
| 5 | + "type": "cakephp-plugin", |
5 | 6 | "keywords": [ |
6 | 7 | "cakephp", |
7 | 8 | "queue", |
8 | 9 | "deferred tasks", |
9 | 10 | "background" |
10 | 11 | ], |
11 | | - "homepage": "https://github.com/dereuromark/cakephp-queue", |
12 | | - "license": "MIT", |
13 | 12 | "authors": [ |
14 | 13 | { |
15 | 14 | "name": "Mark Scherer", |
|
22 | 21 | "role": "Contributor" |
23 | 22 | } |
24 | 23 | ], |
| 24 | + "homepage": "https://github.com/dereuromark/cakephp-queue", |
| 25 | + "support": { |
| 26 | + "source": "https://github.com/dereuromark/cakephp-queue" |
| 27 | + }, |
25 | 28 | "require": { |
26 | 29 | "php": ">=8.1", |
27 | 30 | "brick/varexporter": "^0.4.0", |
|
38 | 41 | "phpunit/phpunit": "^10.1" |
39 | 42 | }, |
40 | 43 | "suggest": { |
41 | | - "friendsofcake/search": "For admin backend and filtering of current jobs.", |
| 44 | + "dereuromark/cakephp-ide-helper": "For maximum IDE support, especially around createJob() usage.", |
42 | 45 | "dereuromark/cakephp-tools": "For the QueueEmailTask (if you don't write your own task here). Also for admin backend.", |
43 | | - "dereuromark/cakephp-ide-helper": "For maximum IDE support, especially around createJob() usage." |
44 | | - }, |
45 | | - "support": { |
46 | | - "source": "https://github.com/dereuromark/cakephp-queue" |
| 46 | + "friendsofcake/search": "For admin backend and filtering of current jobs." |
47 | 47 | }, |
| 48 | + "minimum-stability": "stable", |
| 49 | + "prefer-stable": true, |
48 | 50 | "autoload": { |
49 | 51 | "psr-4": { |
50 | 52 | "Queue\\": "src/", |
|
53 | 55 | }, |
54 | 56 | "autoload-dev": { |
55 | 57 | "psr-4": { |
| 58 | + "Foo\\": "tests/test_app/plugins/Foo/src/", |
56 | 59 | "Queue\\Test\\TestCase\\": "tests/TestCase/", |
57 | | - "TestApp\\": "tests/test_app/src/", |
58 | | - "Foo\\": "tests/test_app/plugins/Foo/src/" |
| 60 | + "TestApp\\": "tests/test_app/src/" |
59 | 61 | } |
60 | 62 | }, |
61 | | - "prefer-stable": true, |
62 | | - "minimum-stability": "stable", |
63 | | - "scripts": { |
64 | | - "stan": "phpstan analyse", |
65 | | - "stan-tests": "phpstan analyse -c tests/phpstan.neon", |
66 | | - "stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.10.0 && mv composer.backup composer.json", |
67 | | - "test": "phpunit", |
68 | | - "test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml", |
69 | | - "lowest": "validate-prefer-lowest", |
70 | | - "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", |
71 | | - "cs-check": "phpcs --extensions=php", |
72 | | - "cs-fix": "phpcbf --extensions=php" |
73 | | - }, |
74 | 63 | "config": { |
75 | | - "sort-packages": true, |
76 | | - "process-timeout": 600, |
77 | 64 | "allow-plugins": { |
78 | 65 | "cakephp/plugin-installer": true, |
79 | 66 | "dealerdirect/phpcodesniffer-composer-installer": true |
80 | | - } |
| 67 | + }, |
| 68 | + "process-timeout": 600, |
| 69 | + "sort-packages": true |
| 70 | + }, |
| 71 | + "scripts": { |
| 72 | + "cs-check": "phpcs --extensions=php", |
| 73 | + "cs-fix": "phpcbf --extensions=php", |
| 74 | + "lowest": "validate-prefer-lowest", |
| 75 | + "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", |
| 76 | + "stan": "phpstan analyse", |
| 77 | + "stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.10.0 && mv composer.backup composer.json", |
| 78 | + "stan-tests": "phpstan analyse -c tests/phpstan.neon", |
| 79 | + "test": "phpunit", |
| 80 | + "test-coverage": "phpunit --log-junit tmp/coverage/unitreport.xml --coverage-html tmp/coverage --coverage-clover tmp/coverage/coverage.xml" |
81 | 81 | } |
82 | 82 | } |
0 commit comments