A boilerplate for small PHP Projects containing the Slim microframework, Twig as Template Engine and Doctrine as ORM.
If you use PHPUnit for tests, the /tests
folder is there, just for you to use :P
Here are some of the HelloSlim3 features...
- Admin panel (ready to be customized, with basic auth)
- Bootstrap integration
- Basic controller example (both web
/
and API/api
) - Basic tests examples
To run HelloSlim3 you need:
- PHP 5.5.x
- A MySQL database (if you really need it)
- Composer & PHPUnit
- SASS
- Install PHPUnit if you didn't before.
- Launch SASS watcher
sass --watch assets/sass/:public/css --style compressed
- Create a
.env
file in the root of your project. Take a look at.env.example
- Change database connection credentials in
.env
- Change admin username and password in
.env
- Launch local PHP Server from HelloSlim3 folder
php -S 0.0.0.0:8080 -t public public/index.php
- Go and visit
http://localhost:8080
- Enjoy
- Copy
.env.example
into.env
- Change credentials in
.env
according to your setup - Run
phpunit tests/
- Add some test cases for controller
- Complete the to-do list ;)
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.