sinergi/project

This package is abandoned and no longer maintained. No replacement package was suggested.

Project Dependency Workflow

0.1.14 2014-08-22 01:38 UTC

This package is not auto-updated.

Last update: 2016-06-19 16:27:51 UTC


README

Build Status Latest Stable Version Total Downloads License

Project Dependency Workflow. Allows to work on dependencies of a project without compromises.

Requirements

This library uses PHP 5.4+.

Installation

It is recommended that you install the Project library through composer. To do so, add the following lines to your composer.json file.

{
    "require": {
       "sinergi/project": "dev-master"
    }
}

Examples

No reat doc yet, sorry. But this is basically what needs to be added to composer.json:

{
    "scripts": {
        "post-autoload-dump": [
            "Sinergi\\Project\\Setup::setupAutoloader",
            "Sinergi\\Project\\Setup::setupPhpStorm"
        ]
    }
}

And this is an example of the project.xml file:

<project>
    <sources>
        <directory>../dependency/</directory>
    </sources>
</project>