An open API service indexing awesome lists of open source software.

https://github.com/cdtweb/pharven

Pharven bundles your vendor directory into a PHP Archive (PHAR)
https://github.com/cdtweb/pharven

composer phar php

Last synced: about 1 year ago
JSON representation

Pharven bundles your vendor directory into a PHP Archive (PHAR)

Awesome Lists containing this project

README

          

Pharven
=======

[![Build
Status](https://travis-ci.org/cdtweb/pharven.svg?branch=master)](https://travis-ci.org/cdtweb/pharven)

If you have ever needed to commit your `vendor/` directory into your project repository then Pharven was built for you.

Pharven bundles your vendor directory into a single PHP Archive (PHAR) and allows you to
commit and deploy a single file instead of your entire `vendor/` directory.


## Installation

Add Pharven to your project using Composer:

composer require cdtweb/pharven

## Usage

Add `pharven.json` to your project root with the following content:

{
"mount_dirs": [
"src"
]
}

**mount_dirs** are very important if you are using Composer to autoload your project classes. `.phar` files act as their
own file system, so if your classes aren't mounted, they won't be visible to the Composer autoloader and you will run
into problems.

**Run Pharven to create/update your PHAR file:**

php vendor/bin/pharven

A file named `pharven.phar` will be added to the working directory. Update your bootstrap to include `./pharven.phar`
instead of `vendor/autoload.php` and you're good to go.