dev-master
9999999-dev https://github.com/42mate/towelTowel framework project structure.
MIT
The Requires
- php >=5.4
- 42mate/towel dev-master
twig php mvc silex dbal easy
Towel framework project structure.
This the standard folder structure for any Towel project, (*1)
Start by installing composer oin any preferred folder, (*2)
curl -s https://getcomposer.org/installer | php
After that, run composer to create Towel project's folder structure., (*3)
php composer.php create-project --no-interaction -s dev 42mate/towel-standard
After that you'll have a fully operational Towel instance to start coding your application., (*4)
Go to Github with your github account., (*5)
Fork the Towel Standard repository (click on the "Fork" button), (*6)
After the "forking action" has completed, clone your fork locally, (*7)
git clone git@github.com:USERNAME/towel-standard.git
Add the upstream repository as a remote (for update your fork)., (*8)
cd towel-standard git remote add upstream git://github.com/42mate/towel-standard.git
Run composer update to install all dependencies., (*9)
To update your fork with the main repo do the following, (*10)
cd towel-standard git checkout master git fetch upstream git merge upstream/master
Do your changes and then commit and push your changes, (*11)
git commit .... your params ... git push origin master
After that create a new pull request in your fork page in github and we are going to receive that request to merge your changes in the main repo., (*12)
Towel framework project structure.
MIT
twig php mvc silex dbal easy