Skip to content

Commit

Permalink
remove middlewares/utils dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
delolmo committed Nov 17, 2023
1 parent ce68cb0 commit 5f7f06b
Show file tree
Hide file tree
Showing 4 changed files with 815 additions and 226 deletions.
35 changes: 19 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "delolmo/symfony-router",
"type": "library",
"description": "PSR-15 middleware to use the symfony/routing component and store the route attributes in the request.",
"license": "MIT",
"type": "library",
"keywords": [
"psr-7",
"psr-15",
Expand All @@ -13,21 +14,24 @@
"symfony-routing"
],
"homepage": "https://github.com/delolmo/symfony-router",
"license": "MIT",
"support": {
"issues": "https://github.com/delolmo/symfony-router/issues"
},
"require": {
"php": "^8.1",
"middlewares/utils": "^3.3",
"php-http/discovery": "^1.19",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0",
"symfony/config": "^6.2",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/psr-http-message-bridge": "^2.3",
"symfony/routing": "^6.2"
},
"require-dev": {
"doctrine/coding-standard": "^10.0",
"equip/dispatch": "^2.0",
"ergebnis/composer-normalize": "^2.29",
"infection/infection": "^0.26",
"laminas/laminas-diactoros": "^2.24",
"laminas/laminas-diactoros": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
Expand All @@ -38,7 +42,8 @@
"rector/rector": "^0.15",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.15"
"vimeo/psalm": "^5.15",
"cakephp/http": "^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -50,6 +55,14 @@
"DelOlmo\\Middleware\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": true
}
},
"scripts": {
"coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-text",
"doctrine": "php bin/console orm:generate-proxies && php bin/console orm:validate-schema --skip-sync",
Expand All @@ -72,15 +85,5 @@
"@psalm",
"@phpunit"
]
},
"support": {
"issues": "https://github.com/delolmo/symfony-router/issues"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}
Loading

0 comments on commit 5f7f06b

Please sign in to comment.