Skeleton for MvcCore CD Collection (mvccore/example-cdcol
) example portable packing/building.
# load cd collection portable project skeleton
composer create-project mvccore/example-cdcol-portable ./my-cdcol-portable
# go to portable project skeleton directory
cd my-cdcol-portable
# load cd collection project
composer create-project mvccore/example-cdcol ./development
- Result is completelly portable -
./example-cdcol-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 itself
- 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-cdcol-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-cdcol-portable/build
# run build process into single PHP file
sh make.sh
# go to project build dir
cd ./my-cdcol-portable/build
# run build process into single PHP file
make.cmd
# visit script `make-php.php` in your project build directory:
http://localhost/my-cdcol-portable/build/make-php.php
# now run your result in:
http://localhost/my-cdcol-portable/release/