Respect / Config

A powerful, small, deadly simple configurator and dependency injection container DSL made to be easy
http://respect.github.io/Config
Other
98 stars 7 forks source link

Moving respect/test to be required only on dev installs #36

Closed diegoholiveira closed 11 years ago

diegoholiveira commented 11 years ago

Since Respect/Test is a tool for testing purpose, I move it to the section require-dev on composer.

To install with Respect/Test, just use the flag --dev, as the example: php composer.phar install --dev

nickl- commented 11 years ago

This was the original idea hence the use of

make composer-install-dev

in the travis configuration.

@diegoholiveira make composer-install-dev is equivalent to php composer.phar install --dev but also checks if it can find composer otherwise installs it first before doing the install --dev. Tx for spotting this! =)