technosophos / phpcompressor
A simple PHP compressor that removes unnecessary data from PHP source code.
1.0.0
2012-02-03 22:41 UTC
Requires
- php: >=5.2.6
This package is not auto-updated.
Last update: 2024-10-31 16:29:32 UTC
README
Authors: M Butcher (matt@aleph-null.tv), J Pruis (email@jurriaanpruis.nl)
Copyright (c) 2009-2010. Licensed under an MIT-style license. See COPYING-MIT.txt
About this package
This package provides a very simple PHP code compressor. It reads a single source file and then loads that source, along with all of the other locally included files, into one bigger file. The larger file is compacted by removing as much superfluous data as possible, including comments and whitespace.
Using this tool
Usage:
php ./src/phpcompactor.php compressed_file.php source_file.php
This will compress source_file.php
and all of its dependencies into compressed_file.php
.