Skeleton for MvcCore Hello World (mvccore/example-helloworld
) example portable packing/building.
# load hello world portable project skeleton
composer create-project mvccore/example-helloworld-portable ./my-helloworld-portable
# go to portable project skeleton directory
cd my-helloworld-portable
# load hello world project
composer create-project mvccore/example-helloworld ./development
- Result is completely portable -
./example-helloworld-portable/release/index.php
- Result application is currently packed in strict package mode
- All packing configurations are included in
./build/configs
directory - Packed with Packager library (
mvccore/packager
), all packing ways possible:- PHAR file
- standard PHAR package with whole development directory content
- PHP file
- strict package
- everything is contained in result
index.php
- only
.htaccess
orweb.config
are necessary to use mod_rewrite
- everything is contained in result
- preserve package
- result
index.php
file contains PHP files, PHTML templates but no CSS/JS/fonts or images - all wrapped file system functions are looking inside package first, then they try to read data from HDD
- result
- preserve hdd
- result
index.php
file contains PHP files, PHTML templates but no CSS/JS/fonts or images - all wrapped file system functions are looking on HDD first, then they try to read data from package inself
- result
- strict hdd
- result
index.php
file contains only PHP files, but PHTML templates, all CSS/JS/fonts and images are on HDD - no PHP file system function is wrapped
- result
- strict package
- PHAR file
- go to
./my-helloworld-portable/development
- clear everything in
./Var/Tmp/
- uncomment
->SetCompiled(\MvcCore\Application::COMPILED_SFU)
in./index.php
- visit all application routes where are different JS/CSS bundles
groups to generate
./Var/Tmp/
content for result app - run build process
# go to project build dir
cd ./my-helloworld-portable/build
# run build process into single PHP file
sh make.sh
# go to project build dir
cd ./my-helloworld-portable/build
# run build process into single PHP file
make.cmd
# visit script `make-php.php` in your project build directory:
http://localhost/my-helloworld-portable/build/make-php.php
# now run your result in:
http://localhost/my-helloworld-portable/release/