ppi / skeleton-app
The PPI Skeleton Application - A pre-built application around the PPI Framework. Lots of extra goodies
Installs: 91
Dependents: 0
Suggesters: 0
Security: 0
Stars: 55
Watchers: 10
Forks: 16
Open Issues: 5
Requires
- ppi/distribution-module: dev-master
- ppi/framework: ^2.1
Requires (Dev)
- phpunit/phpunit: ^4.8
- dev-master
- 2.1.2
- 2.1.1
- 2.1.0-alpha4
- 2.1.0-alpha3
- 2.1.0-alpha
- dev-feature/chain-router-caching
- dev-feature/symfony-bundle-injection
- dev-feature/optional-module-create-questions
- dev-support/2.1
- dev-feature/plates-and-latte-templating
- dev-feature/laravel-router
- dev-feature/merge-develop-back-to-master
- dev-fix/landing-page-cleanup
- dev-restyling
- dev-feature/modern-landing-page
- dev-fix/zend-version-upgrade
- dev-fix/composer-module-name
- dev-feature/37-aura-router-implementation
- dev-feature/frontend-modernisation
- dev-feature/ansible-playbooks
- dev-feature/cache
- dev-feature/http-kernel
- dev-feature/advanced-module-services
- dev-legacy/2.0
- dev-support/2.0
- dev-feature/composer-deps
- dev-feature/config-2.x
This package is not auto-updated.
Last update: 2024-10-26 13:44:38 UTC
README
What is PPI ?
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.
Contributing
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!