-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate packages from zendframework to laminas and mezzio
- Loading branch information
Showing
7 changed files
with
93 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,65 @@ | ||
{ | ||
"name" : "los/los-rate-limit", | ||
"description" : "Rate Limit Middleware for PHP", | ||
"require" : { | ||
"php" : "^7.1", | ||
"psr/http-message" : "^1.0", | ||
"psr/container": "^1.0", | ||
"psr/http-server-middleware": "^1.0", | ||
"zendframework/zend-problem-details": "^1.0", | ||
"zendframework/zend-diactoros": "^1.8.6 || ^2.0", | ||
"psr/simple-cache": "^1.0" | ||
}, | ||
"require-dev" : { | ||
"phpunit/phpunit" : "^7.0 || ^8.0", | ||
"squizlabs/php_codesniffer": "^3.4", | ||
"php-coveralls/php-coveralls": "^2.1", | ||
"doctrine/coding-standard": "^6.0", | ||
"phpstan/phpstan": "^0.11.12" | ||
}, | ||
"license" : "BSD-3-Clause", | ||
"keywords" : [ "api", "rate", "limit", "middleware" ], | ||
"autoload-dev" : { | ||
"psr-4" : { | ||
"LosMiddlewareTest\\RateLimit\\" : "tests/" | ||
} | ||
}, | ||
"autoload" : { | ||
"psr-4" : { | ||
"LosMiddleware\\RateLimit\\" : "src/" | ||
} | ||
}, | ||
"type" : "library", | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"support" : { | ||
"email" : "leandro@leandrosilva.info", | ||
"source" : "https://github.com/LansoWeb/LosRateLimit", | ||
"issues" : "https://github.com/LansoWeb/LosRateLimit/issues" | ||
}, | ||
"homepage" : "https://github.com/LansoWeb/LosRateLimit", | ||
"authors" : [ { | ||
"name" : "Leandro Silva", | ||
"email" : "leandro@leandrosilva.info" | ||
} ], | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
"@phpstan" | ||
"name": "los/los-rate-limit", | ||
"description": "Rate Limit Middleware for PHP", | ||
"require": { | ||
"php": "^7.1", | ||
"psr/http-message": "^1.0", | ||
"psr/container": "^1.0", | ||
"psr/http-server-middleware": "^1.0", | ||
"mezzio/mezzio-problem-details": "^1.0", | ||
"laminas/laminas-diactoros": "^1.8.6 || ^2.0", | ||
"psr/simple-cache": "^1.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.0 || ^8.0", | ||
"squizlabs/php_codesniffer": "^3.4", | ||
"php-coveralls/php-coveralls": "^2.1", | ||
"doctrine/coding-standard": "^6.0", | ||
"phpstan/phpstan": "^0.11.12" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"api", | ||
"rate", | ||
"limit", | ||
"middleware" | ||
], | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"phpstan": "phpstan analyse -l max -c phpstan.neon src", | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml", | ||
"upload-coverage": "php-coveralls -v" | ||
} | ||
"autoload-dev": { | ||
"psr-4": { | ||
"LosMiddlewareTest\\RateLimit\\": "tests/" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LosMiddleware\\RateLimit\\": "src/" | ||
} | ||
}, | ||
"type": "library", | ||
"config": { | ||
"sort-packages": true | ||
}, | ||
"support": { | ||
"email": "leandro@leandrosilva.info", | ||
"source": "https://github.com/LansoWeb/LosRateLimit", | ||
"issues": "https://github.com/LansoWeb/LosRateLimit/issues" | ||
}, | ||
"homepage": "https://github.com/LansoWeb/LosRateLimit", | ||
"authors": [ | ||
{ | ||
"name": "Leandro Silva", | ||
"email": "leandro@leandrosilva.info" | ||
} | ||
], | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
"@phpstan" | ||
], | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"phpstan": "phpstan analyse -l max -c phpstan.neon src", | ||
"test": "phpunit --colors=always", | ||
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml", | ||
"upload-coverage": "php-coveralls -v" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters