Upgrading from Box2? Checkout the upgrade guide!
The Box application simplifies the PHAR building process. Out of the box (no pun intended), the application can do many great things:
- β‘ Fast application bundling
- π¨ PHAR isolation
- βοΈ Zero configuration by default
- π Requirements checker
- π¨ Friendly error logging experience
- π Retrieve information about the PHAR extension or a PHAR file and its contents (
box info
orbox diff
) - ποΈ Verify the signature of an existing PHAR (
box verify
) - π Use Git tags and short commit hashes for versioning
- π΅οΈοΈ Get recommendations and warnings about regarding your configuration (
box validate
) - π³ Docker support (
box docker
)
For the full documentation see https://box-project.github.io/box.
- Installation
- Usage
- Configuration
- Base path (
base-path
) - Main (
main
) - Output (
output
) - Permissions (
chmod
) - Check requirements (
check-requirements
) - Including files
- Stub
- Forcing the timestamp (
timestamp
) - Dumping the Composer autoloader (
dump-autoload
) - Compactors (
compactors
) - Compression algorithm (
compression
) - Security
- Metadata (
metadata
) - Replaceable placeholders
- Replacements (
replacements
) - Replacement sigil (
replacement-sigil
) - Datetime placeholder (
datetime
) - Datetime placeholder format (
datetime-format
) - Pretty git commit placeholder (
git
) - Git commit placeholder (
git-commit
) - Short git commit placeholder (
git-commit-short
) - Git tag placeholder (
git-tag
) - Git version placeholder (
git-version
)
- Replacements (
- Base path (
- Requirements checker
- Optimize your PHAR
- PHAR code isolation
- Docker support
- Symfony support
- Reproducible builds
- PHAR signing best practices
- FAQ
- Contributing
- Upgrade guide
- Backward Compatibility Promise (BCP)
- Credits
Creating a PHAR should be as simple as running box compile
(no config required!). It will however assume some
defaults that you might want to change. Box will by default be looking in order for the files box.json
and
box.json.dist
in the current working directory. A basic configuration could be for example changing the PHAR
permissions:
{
"chmod": "0700"
}
You can then find more advanced configuration settings in the configuration documentation. For more information on which command or options is available, you can run:
box help
The project provides a Makefile
in which the most common commands have been registered such as fixing the coding
style or running the test.
make
The policy is for the major part following the same as Symfony's one. Note that the code marked
as @private
or @internal
are excluded from the BCP.
The text displayed by the commands (e.g. compile
or info
) or the content of the error/exception messages are also not subject to the BCP.
Project originally created by: Kevin Herrera (@kherge) which has now been moved under the Humbug umbrella.