2024-02-22 03:14:42 +00:00
|
|
|
{
|
|
|
|
"name": "mezzio/mezzio-skeleton",
|
|
|
|
"description": "Laminas mezzio skeleton. Begin developing PSR-15 middleware applications in seconds!",
|
|
|
|
"type": "project",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"keywords": [
|
|
|
|
"laminas",
|
|
|
|
"mezzio",
|
|
|
|
"skeleton",
|
|
|
|
"middleware",
|
|
|
|
"psr",
|
|
|
|
"psr-7",
|
|
|
|
"psr-11",
|
|
|
|
"psr-15"
|
|
|
|
],
|
|
|
|
"homepage": "https://mezzio.dev",
|
|
|
|
"support": {
|
|
|
|
"docs": "https://docs.mezzio.dev/mezzio/",
|
|
|
|
"issues": "https://github.com/mezzio/mezzio-skeleton/issues",
|
|
|
|
"source": "https://github.com/mezzio/mezzio-skeleton",
|
|
|
|
"rss": "https://github.com/mezzio/mezzio-skeleton/releases.atom",
|
|
|
|
"chat": "https://laminas.dev/chat",
|
|
|
|
"forum": "https://discourse.laminas.dev"
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"sort-packages": true,
|
|
|
|
"allow-plugins": {
|
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
|
|
"composer/package-versions-deprecated": true,
|
|
|
|
"laminas/laminas-component-installer": true
|
|
|
|
},
|
|
|
|
"platform": {
|
|
|
|
"php": "8.1.99"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"laminas": {
|
|
|
|
"component-whitelist": [
|
|
|
|
"mezzio/mezzio",
|
|
|
|
"mezzio/mezzio-helpers",
|
|
|
|
"mezzio/mezzio-router",
|
|
|
|
"laminas/laminas-httphandlerrunner",
|
|
|
|
"mezzio/mezzio-fastroute",
|
|
|
|
"mezzio/mezzio-platesrenderer"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
|
2024-02-23 02:24:43 +00:00
|
|
|
"ext-pdo": "*",
|
2024-02-22 03:14:42 +00:00
|
|
|
"composer/package-versions-deprecated": "^1.10.99",
|
2024-02-23 02:24:43 +00:00
|
|
|
"elie29/zend-phpdi-config": "^9.0",
|
2024-02-22 03:14:42 +00:00
|
|
|
"laminas/laminas-component-installer": "^2.6 || ^3.0",
|
|
|
|
"laminas/laminas-config-aggregator": "^1.6",
|
|
|
|
"laminas/laminas-diactoros": "^3.0.0",
|
|
|
|
"laminas/laminas-stdlib": "^3.6",
|
|
|
|
"mezzio/mezzio": "^3.7",
|
2024-02-25 03:12:57 +00:00
|
|
|
"mezzio/mezzio-authentication-session": "^1.9",
|
2024-02-22 03:14:42 +00:00
|
|
|
"mezzio/mezzio-fastroute": "^3.11.0",
|
2024-02-23 02:24:43 +00:00
|
|
|
"mezzio/mezzio-helpers": "^5.7",
|
2024-02-22 03:14:42 +00:00
|
|
|
"mezzio/mezzio-platesrenderer": "^2.10"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
2024-02-25 03:12:57 +00:00
|
|
|
"filp/whoops": "^2.15.4",
|
2024-02-22 03:14:42 +00:00
|
|
|
"laminas/laminas-coding-standard": "~2.5.0",
|
|
|
|
"laminas/laminas-development-mode": "^3.12.0",
|
|
|
|
"mezzio/mezzio-tooling": "^2.9",
|
|
|
|
"phpunit/phpunit": "^10.5.5",
|
|
|
|
"psalm/plugin-phpunit": "^0.18.4",
|
|
|
|
"roave/security-advisories": "dev-master",
|
2024-02-25 03:12:57 +00:00
|
|
|
"vimeo/psalm": "^5.18"
|
2024-02-22 03:14:42 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"App\\": "src/App/src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"AppTest\\": "test/AppTest/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"post-create-project-cmd": [
|
|
|
|
"@development-enable"
|
|
|
|
],
|
|
|
|
"post-install-cmd": "@clear-config-cache",
|
|
|
|
"post-update-cmd": "@clear-config-cache",
|
|
|
|
"development-disable": "laminas-development-mode disable",
|
|
|
|
"development-enable": "laminas-development-mode enable",
|
|
|
|
"development-status": "laminas-development-mode status",
|
|
|
|
"mezzio": "laminas --ansi",
|
|
|
|
"check": [
|
|
|
|
"@cs-check",
|
|
|
|
"@test"
|
|
|
|
],
|
|
|
|
"clear-config-cache": "php bin/clear-config-cache.php",
|
|
|
|
"enable-codestandard": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
|
|
|
|
"cs-check": "phpcs",
|
|
|
|
"cs-fix": "phpcbf",
|
|
|
|
"serve": [
|
|
|
|
"Composer\\Config::disableProcessTimeout",
|
|
|
|
"php -S 0.0.0.0:8080 -t public/"
|
|
|
|
],
|
|
|
|
"static-analysis": "psalm --stats",
|
|
|
|
"static-analysis-update-baseline": "psalm --stats --update-baseline",
|
|
|
|
"test": "phpunit --colors=always",
|
|
|
|
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
|
|
|
|
},
|
|
|
|
"scripts-descriptions": {
|
|
|
|
"clear-config-cache": "Clears merged config cache. Required for config changes to be applied.",
|
|
|
|
"static-analysis": "Run static analysis tool Psalm.",
|
|
|
|
"static-analysis-update-baseline": "Run static analysis tool Psalm and update baseline."
|
|
|
|
}
|
|
|
|
}
|