sinergi/devtools

Set of PHP development tools to allow working on multiple projects

Maintainers

👁 sinergi

Package info

github.com/sinergi/devtools

pkg:composer/sinergi/devtools

Statistics

Installs: 347

Dependents: 2

Suggesters: 0

Stars: 5

Open Issues: 0

0.2.4 2015-04-08 17:32 UTC

Requires

  • php: >=5.4

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT d4f9d6bc2788abb741be22c267b45dfbf7b20f84

  • Gabriel Bull <me.woop@gabrielbull.com>

dependencyworkflowtoolsdevelopment


README

👁 Build Status
👁 Latest Stable Version
👁 Total Downloads
👁 License

Set of PHP development tools to allow working on multiple projects. 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 Devtools library through composer. To do so, add the following lines to your composer.json file.

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

Examples

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

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

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

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