Package Data | |
---|---|
Maintainer Username: | noiselabs |
Maintainer Contact: | paul@ppi.io (Paul Dragoonis) |
Package Create Date: | 2011-10-21 |
Package Last Update: | 2016-06-01 |
Home Page: | http://www.ppi.io |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-16 15:02:32 |
Package Statistics | |
---|---|
Total Downloads: | 91 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 55 |
Total Watchers: | 10 |
Total Forks: | 16 |
Total Open Issues: | 5 |
PPI is a framework delivery engine. Using the concept of microservices, it lets you choose which parts of frameworks you wish to use on a per-feature basis. As such each feature makes its own independent decisions, allowing you to pick the best tools from the best PHP frameworks.
PPI is an open source, community-driven project. If you'd like to contribute, check out our issues list. You can find us on IRC, Google Plus or Twitter ([@ppi_framework][@twitter]).
If you're submitting a pull request, please do so on your own branch on [GitHub][@gitweb].
Start by forking the PPI Skeletonapp repository and cloning your fork locally:
$ git clone git@github.com:YOUR_USERNAME/skeletonapp.git
$ git remote add upstream git://github.com/ppi/skeletonapp.git
$ git checkout -b feature/BRANCH_NAME master
After your work is finished rebase the feature branch and push it:
$ git checkout master
$ git fetch upstream
$ git merge upstream/master
$ git checkout feature/BRANCH_NAME
$ git rebase master
$ git push --force origin feature/BRANCH_NAME
Go to GitHub again and make a pull request on the ppi/framework repository. Thank you for making PPI better!