|
1 | 1 | {
|
2 | 2 | "name": "delolmo/symfony-router",
|
3 |
| - "type": "library", |
4 | 3 | "description": "PSR-15 middleware to use the symfony/routing component and store the route attributes in the request.",
|
| 4 | + "license": "MIT", |
| 5 | + "type": "library", |
5 | 6 | "keywords": [
|
6 | 7 | "psr-7",
|
7 | 8 | "psr-15",
|
|
13 | 14 | "symfony-routing"
|
14 | 15 | ],
|
15 | 16 | "homepage": "https://github.com/delolmo/symfony-router",
|
16 |
| - "license": "MIT", |
| 17 | + "support": { |
| 18 | + "issues": "https://github.com/delolmo/symfony-router/issues" |
| 19 | + }, |
17 | 20 | "require": {
|
18 | 21 | "php": "^8.1",
|
19 |
| - "middlewares/utils": "^3.3", |
| 22 | + "php-http/discovery": "^1.19", |
20 | 23 | "psr/http-message": "^1.0 || ^2.0",
|
21 | 24 | "psr/http-server-middleware": "^1.0",
|
22 | 25 | "symfony/config": "^6.2",
|
23 |
| - "symfony/psr-http-message-bridge": "^2.0", |
| 26 | + "symfony/psr-http-message-bridge": "^2.3", |
24 | 27 | "symfony/routing": "^6.2"
|
25 | 28 | },
|
26 | 29 | "require-dev": {
|
27 | 30 | "doctrine/coding-standard": "^10.0",
|
| 31 | + "equip/dispatch": "^2.0", |
28 | 32 | "ergebnis/composer-normalize": "^2.29",
|
29 | 33 | "infection/infection": "^0.26",
|
30 |
| - "laminas/laminas-diactoros": "^2.24", |
| 34 | + "laminas/laminas-diactoros": "^3.3", |
31 | 35 | "php-parallel-lint/php-parallel-lint": "^1.3",
|
32 | 36 | "phpstan/phpstan": "^1.10",
|
33 | 37 | "phpstan/phpstan-deprecation-rules": "^1.1",
|
|
38 | 42 | "rector/rector": "^0.15",
|
39 | 43 | "roave/security-advisories": "dev-latest",
|
40 | 44 | "squizlabs/php_codesniffer": "^3.7",
|
41 |
| - "vimeo/psalm": "^5.15" |
| 45 | + "vimeo/psalm": "^5.15", |
| 46 | + "cakephp/http": "^5.0" |
42 | 47 | },
|
43 | 48 | "autoload": {
|
44 | 49 | "psr-4": {
|
|
50 | 55 | "DelOlmo\\Middleware\\": "tests/"
|
51 | 56 | }
|
52 | 57 | },
|
| 58 | + "config": { |
| 59 | + "allow-plugins": { |
| 60 | + "dealerdirect/phpcodesniffer-composer-installer": true, |
| 61 | + "ergebnis/composer-normalize": true, |
| 62 | + "infection/extension-installer": true, |
| 63 | + "php-http/discovery": true |
| 64 | + } |
| 65 | + }, |
53 | 66 | "scripts": {
|
54 | 67 | "coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-text",
|
55 | 68 | "doctrine": "php bin/console orm:generate-proxies && php bin/console orm:validate-schema --skip-sync",
|
|
72 | 85 | "@psalm",
|
73 | 86 | "@phpunit"
|
74 | 87 | ]
|
75 |
| - }, |
76 |
| - "support": { |
77 |
| - "issues": "https://github.com/delolmo/symfony-router/issues" |
78 |
| - }, |
79 |
| - "config": { |
80 |
| - "allow-plugins": { |
81 |
| - "infection/extension-installer": true, |
82 |
| - "dealerdirect/phpcodesniffer-composer-installer": true, |
83 |
| - "ergebnis/composer-normalize": true |
84 |
| - } |
85 | 88 | }
|
86 | 89 | }
|
0 commit comments