Download the PHP package johnkary/php-skeleton without Composer
On this page you can find all versions of the php package johnkary/php-skeleton. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package php-skeleton
PHP Project Skeleton
Basic PHP project structure for a PHP 8.1+ application. Pre-configured with an example namespace, PHPUnit test suite, web-accessible front controller, and command-line application.
Installation
- Install Composer package manager.
-
Create project skeleton:
$ composer create-project johnkary/php-skeleton your-new-project-dir $ cd !$ $ git init
-
Start PHP's built-in web server:
$ php -S 127.0.0.1:8000 -t www
- Open http://127.0.0.1:8000 to access
www/index.php
- Run
php bin/console
to access command-line scripts
Running test suite
-
Optionally copy and configure
phpunit.xml.dist
for your project's environment:$ cp phpunit.xml.dist phpunit.xml $ vi phpunit.xml
-
Run the test suite:
$ ./vendor/bin/phpunit
All versions of php-skeleton with dependencies
PHP Build Version
Package Version
The package johnkary/php-skeleton contains the following files
Loading the files please wait ....