vitya / application-template
Vitya PHP application template
1.0.0-alpha10
2022-07-01 15:03 UTC
Requires
- vitya/application: ^1.0
This package is auto-updated.
Last update: 2023-03-08 15:44:12 UTC
README
This package contains a basic web application template. Use it as a starting point to create an app based on the Vitya framework.
How to setup a new application?
You can use Composer to create your app:
composer create-project vitya/application-template my-new-project -s alpha
(NB: The -s alpha option is necessary for now, since there is no stable release yet.)
Then you can launch your new app using PHP built-in web server:
./my-new-project/cli/server
By default, your application will be available at http://localhost:8000, but you can specify another hostname or port number:
./my-new-project/cli/server my.dev.machine:1234