Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omegacms/routing
OmegaCMS Routing Package
https://github.com/omegacms/routing
omega omegacms php routing
Last synced: about 1 month ago
JSON representation
OmegaCMS Routing Package
- Host: GitHub
- URL: https://github.com/omegacms/routing
- Owner: omegacms
- License: gpl-3.0
- Created: 2023-11-05T17:12:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-04T13:31:26.000Z (3 months ago)
- Last Synced: 2024-11-09T05:45:54.862Z (about 2 months ago)
- Topics: omega, omegacms, php, routing
- Language: PHP
- Homepage: https://omegacms.github.io
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Routing Package
The Routing package is used to register an application's routes
and to route the request URI to a controller method.## Requirements
* PHP 8.2 or later
## Installation via Composer
Add `"omegacms/routing": "^1.0.0"` to the require block in your `composer.json` file and then run `composer install`.
```json
{
"require": {
"omegacms/routing": "^1.0.0"
}
}
```Alternatively, you can simply run the folowing from the command line:
```sh
composer require omegacms/routing "^1.0.0"
```If you want to include the test sources, use:
```sh
composer require --prefer-source omegacms/routing "^1.0.0"
```## Documentation
Work in progress
## Contributing
If you'd like to contribute to the OmegaCMS Routing package, please follow our [contribution guidelines](CONTRIBUTING.md).
## License
This project is open-source software licensed under the [GNU General Public License v3.0](LICENSE).