https://github.com/mudge/engine-skeleton
A starter kit for a web application written with Engine
https://github.com/mudge/engine-skeleton
Last synced: 11 months ago
JSON representation
A starter kit for a web application written with Engine
- Host: GitHub
- URL: https://github.com/mudge/engine-skeleton
- Owner: mudge
- Created: 2017-12-31T16:08:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-01T16:07:41.000Z (over 8 years ago)
- Last Synced: 2025-03-07T16:55:26.926Z (over 1 year ago)
- Language: PHP
- Homepage: https://packagist.org/packages/mudge/engine-skeleton
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Engine Skeleton
This is a starter kit for a web application written with [Engine](https://github.com/mudge/engine).
**Current version:** Unreleased
**Supported PHP versions:** 7.1, 7.2
## Creating an Engine project
```console
$ composer create-project mudge/engine-skeleton:dev-master my-project
```
## Running a development server
```console
$ cd my-project
$ php -S localhost:8080 -t public
```
Now go to http://localhost:8080 and you should see a welcome page from Engine.
## Running tests
```console
$ ./vendor/bin/phpunit
```
## Adding your own code
* Add your tests to `tests`
* Add your controllers to `src` and route requests to them in `public/index.php`
* Add your own templates to `templates`
* Add your own static files to `public`
* Replace this README with something meaningful for your application