eyepax-prasanna / php7-starter-kit
This is a starter kit to begin a application with PHP 7.
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 2
Open Issues: 0
Type:project
Requires
- php: ~7.0
- joshcam/mysqli-database-class: dev-master
- php-di/php-di: ^5.4
- phroute/phroute: ^2.1
- relay/relay: ^1.1
- requtize/config: ^1.0
- vlucas/phpdotenv: ^2.4
- zendframework/zend-diactoros: ^1.3
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-07 19:36:09 UTC
README
PHP 7 Starter kit
Eyepax IT Consulting (Pvt) Ltd
About PHP 7 Starter kit
This is a starter kit for those who are looking to build an application with PHP 7. This is an enhanced build of PHP7 Boilerplate. The additions are
- Configured PHRoute and fixed DI issues with PHP-DI.
- Configured PHP dotenv.
- Added MySQL connectivity and ORM packages using PHP-MySQLi-Database-Class.
- Configuration file management.
- Input handling.
Quick start
Install with composer.
composer create-project eyepax-prasanna/php7-starter-kit <project-path> -s dev
Using the PHP 7 Starter kit
This starter kit is designed to use with ease. It has well defined folder structure.
- config folder has configuration files, which you can add as many files as you want. You can access the config values from anywhere, by calling the file name and keys with dot notation. Eg: config('general.pagination_per_page')
- Can define environment variables in .env file and can call them using env() function. A sample env file is given (.env.example).
- src/app folder has the controllers, libraries, models and repositories.
- src/resources folder can have the template view files.
- src/routes.php can have the routes for the application. For more details on the routing, please check the PHRoute documentation.
- All the Input values can be retrieved using Laravel style. To get all input values, use Input::all(), and to get a specific value use Input::get('item').
- phpcs is configured. So, can make the code comply with PSR standards.
- url() function will give you the URL of the application. You can append a part of URL by passing it as an argument. Eg: url('users') will give you http://{url-of-app}/users.
- storage_path(), function will give you the relative path for the storage folder. So you can save the uploaded files there.
- public_path(), function will give you the relative path for the web folder.
- dd('contents') will print and die (A Laravel style function).