Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iagapie/slim-skeleton
Slim 4 Skeleton Application
https://github.com/iagapie/slim-skeleton
php php7 php74 slim slim-framework slim-skeleton slim4 slim4-skeleton
Last synced: about 1 month ago
JSON representation
Slim 4 Skeleton Application
- Host: GitHub
- URL: https://github.com/iagapie/slim-skeleton
- Owner: iagapie
- License: mit
- Archived: true
- Created: 2020-10-14T13:06:54.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T22:27:31.000Z (almost 4 years ago)
- Last Synced: 2024-09-25T20:09:47.359Z (about 1 month ago)
- Topics: php, php7, php74, slim, slim-framework, slim-skeleton, slim4, slim4-skeleton
- Language: PHP
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Slim 4 Skeleton Application
## Install
From directory in which you want to install your new application, run this command:
```bash
composer create-project iagapie/slim-skeleton [app-name]
```Replace `[app-name]` with name of your new application. You'll want to:
* Point your virtual host document root to your new application's `public/` directory.
* Ensure `var/logs/` and `var/cache/` is writable.To run the application in development, you can run these commands
```bash
cd [app-name]
composer serve
```To run the test suite:
```bash
composer test
```## License
The MIT License (MIT). Please see [LICENSE](LICENSE) for more information.