Develop your Composer libraries with style.
This package makes it easy to develop Composer packages while using them.
Instead of installing the packages you're working on from the Packagist repository, use Studio to symlink them from the filesystem instead.
Under the hood, it uses Composer's path repositories to do so.
As a result, you won't have to develop in the vendor
directory.
Studio also knows how to configure development tools that might be part of your workflow. This includes the following:
- Autoloading (
src
andtests
) - PhpUnit
- PhpSpec
- TravisCI
This list will only get longer in the future.
Studio can be installed globally or per project, with Composer:
Globally (recommended): composer global require franzl/studio
(use as studio
)
Make sure that the ~/.composer/vendor/bin directory is added to your PATH, so that the
studio
executable can be located by your system.
Per project: composer require --dev franzl/studio
(use as vendor/bin/studio
)
All commands should be run from the root of your project, where the composer.json
file is located.
studio create foo/bar
This command creates a skeleton for a new Composer package, already filled with some helpful files to get you started.
In the above example, we're creating a new package in the folder foo/bar
in your project root.
All its dependencies will be available when using Composer.
During creation, you will be asked a series of questions to configure your skeleton. This will include things like configuration for testing tools, Travis CI, and autoloading.
studio create bar --git git@github.com:me/myrepo.git
This will clone the given Git repository to the bar
directory and install its dependencies.
studio load baz
This will make sure the package in the baz
directory will be autoloadable using Composer.
Sometimes you want to throw away a package.
You can do so with the scrap
command, passing a path for a Studio-managed package:
studio scrap foo
Don't worry - you'll be asked for a confirmation first.
This code is published under the MIT License. This means you can do almost anything with it, as long as the copyright notice and the accompanying license file is left intact.
Feel free to send pull requests or create issues if you come across problems or have great ideas. Any input is appreciated!