{"id":13395607,"url":"https://github.com/zendframework/zend-expressive","last_synced_at":"2025-10-03T23:32:20.692Z","repository":{"id":57089843,"uuid":"40017341","full_name":"zendframework/zend-expressive","owner":"zendframework","description":"PSR-15 middleware in minutes!","archived":true,"fork":false,"pushed_at":"2020-01-28T19:25:43.000Z","size":14902,"stargazers_count":711,"open_issues_count":19,"forks_count":196,"subscribers_count":104,"default_branch":"master","last_synced_at":"2024-12-17T01:12:05.073Z","etag":null,"topics":["microframework","microservice","middleware","middleware-pipeline","php","php71","psr-11","psr-15","psr-7","zend-expressive","zend-framework"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zendframework.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-31T17:45:22.000Z","updated_at":"2024-10-18T10:31:21.000Z","dependencies_parsed_at":"2022-08-20T16:01:03.350Z","dependency_job_id":null,"html_url":"https://github.com/zendframework/zend-expressive","commit_stats":null,"previous_names":[],"tags_count":59,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zendframework%2Fzend-expressive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zendframework%2Fzend-expressive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zendframework%2Fzend-expressive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zendframework%2Fzend-expressive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zendframework","download_url":"https://codeload.github.com/zendframework/zend-expressive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235204448,"owners_count":18952326,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["microframework","microservice","middleware","middleware-pipeline","php","php71","psr-11","psr-15","psr-7","zend-expressive","zend-framework"],"created_at":"2024-07-30T18:00:25.877Z","updated_at":"2025-10-03T23:32:15.418Z","avatar_url":"https://github.com/zendframework.png","language":"PHP","readme":"# zend-expressive\n\n\u003e ## Repository abandoned 2019-12-31\n\u003e\n\u003e This repository has moved to [mezzio/mezzio](https://github.com/mezzio/mezzio).\n\n[![Build Status](https://secure.travis-ci.org/zendframework/zend-expressive.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-expressive)\n[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-expressive/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-expressive?branch=master)\n\n*Develop PSR-7 middleware applications in minutes!*\n\nzend-expressive builds on [zend-stratigility](https://github.com/zendframework/zend-stratigility)\nto provide a minimalist PSR-7 middleware framework for PHP, with the following\nfeatures:\n\n- Routing. Choose your own router; we support:\n    - [Aura.Router](https://github.com/auraphp/Aura.Router)\n    - [FastRoute](https://github.com/nikic/FastRoute)\n    - [zend-router](https://github.com/zendframework/zend-expressive-router)\n- DI Containers, via [PSR-11 Container](https://github.com/php-fig/container).\n  Middleware matched via routing is retrieved from the composed container.\n- Optionally, templating. We support:\n    - [Plates](http://platesphp.com/)\n    - [Twig](http://twig.sensiolabs.org/)\n    - [ZF2's PhpRenderer](https://github.com/zendframework/zend-view)\n\n## Installation\n\nWe provide two ways to install Expressive, both using\n[Composer](https://getcomposer.org): via our\n[skeleton project and installer](https://github.com/zendframework/zend-expressive-skeleton),\nor manually.\n\n### Using the skeleton + installer\n\nThe simplest way to install and get started is using the skeleton project, which\nincludes installer scripts for choosing a router, dependency injection\ncontainer, and optionally a template renderer and/or error handler. The skeleton\nalso provides configuration for officially supported dependencies.\n\nTo use the skeleton, use Composer's `create-project` command:\n\n```bash\n$ composer create-project zendframework/zend-expressive-skeleton \u003cproject dir\u003e\n```\n\nThis will prompt you through choosing your dependencies, and then create and\ninstall the project in the `\u003cproject dir\u003e` (omitting the `\u003cproject dir\u003e` will\ncreate and install in a `zend-expressive-skeleton/` directory).\n\n### Manual Composer installation\n\nYou can install Expressive standalone using Composer:\n\n```bash\n$ composer require zendframework/zend-expressive\n```\n\nHowever, at this point, Expressive is not usable, as you need to supply\nminimally:\n\n- a router.\n- a dependency injection container.\n\nWe currently support and provide the following routing integrations:\n\n- [Aura.Router](https://github.com/auraphp/Aura.Router):\n  `composer require zendframework/zend-expressive-aurarouter`\n- [FastRoute](https://github.com/nikic/FastRoute):\n  `composer require zendframework/zend-expressive-fastroute`\n- [zend-router](https://github.com/zendframework/zend-expressive-router):\n  `composer require zendframework/zend-expressive-zendrouter`\n\nWe recommend using a dependency injection container, and typehint against\n[PSR-11 Container](https://github.com/php-fig/container). We\ncan recommend the following implementations:\n\n- [zend-servicemanager](https://github.com/zendframework/zend-servicemanager):\n  `composer require zendframework/zend-servicemanager`\n- [Pimple](https://github.com/silexphp/Pimple) (see [docs](docs/book/features/container/pimple.md) for more details):\n  `composer require zendframework/zend-pimple-config`\n- [Aura.Di](https://github.com/auraphp/Aura.Di) (see [docs](docs/book/features/container/aura-di.md) for more details):\n  `composer require zendframework/zend-auradi-config`\n\nAdditionally, you may optionally want to install a template renderer\nimplementation, and/or an error handling integration. These are covered in the\ndocumentation.\n\n## Documentation\n\nDocumentation is [in the doc tree](docs/book/), and can be compiled using [mkdocs](http://www.mkdocs.org):\n\n```bash\n$ mkdocs build\n```\n\nAdditionally, public-facing, browseable documentation is available at\nhttps://docs.zendframework.com/zend-expressive/\n","funding_links":[],"categories":["PHP","psr-7","Middleware dispatcher","Ground work and ideas"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzendframework%2Fzend-expressive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzendframework%2Fzend-expressive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzendframework%2Fzend-expressive/lists"}