ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Composer

by francodacosta ALL

composer plugin for Sublime Text 2

Details

  • 2013.11.15.20.36.13
  • github.​com
  • github.​com
  • 11 years ago
  • 39 minutes ago
  • 12 years ago

Installs

  • Total 21K
  • Win 13K
  • Mac 4K
  • Linux 4K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 2 0 2 1 0 1 1 1 1 1 1 0 0 2 0 2 3 0 0 3 0 0 1 1 0 1 2 1 0 0 0 1 0 0 0 1 2 0 0 1 0 0 1
Mac 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0
Linux 0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 2 2 0 0 1 0

Readme

Source
raw.​githubusercontent.​com

Composer integration for Sublime Text 2 & 3

ST3 support is still beta, please report issues

With this plugin you can manage your dependencies with composer

Currently the following features are supported: * Execute composer install * Execute composer update * Execute composer self-update * Execute composer dump-autoload * Package management: * Add package * Remove package * Edit composer.json file * Validate a composer.json file

Instalation

Via Package Control

First install Package Control if you haven't done so yet.

Then go to Preferences -> Package Control -> Install Package and type composer to install this plugin.

This is the recommended installation method.

Manual Instalation

Go to your sublime package folder and type:

git clone git@github.com:francodacosta/composer-sublime.git

Running Composer

Just open the command prompt (ctrl + shifp + p) and type composer, context menus are also provided

Features Help

Composer install

executes the composer install command, with the default settings the following command will be executed

composer.phar install -n -v

Composer update

executes the composer update command, with the default settings the following command will be executed

composer.phar update -n -v

Composer self update

executes the composer self update command, updating the composer binary to the latest version. With the default settings the following command will be executed

composer.phar self-update -n -v

Composer dump autoload

executes the composer dump autoload command to regenerate the autloader configuration With the default settings the following command will be executed

composer.phar dump-autoload -n -v

Composer validade

executes the composer validate command With the default settings the following command will be executed

composer.phar validate -n -v

Composer Add Package

You can add a package to the required package list.

When you execute this command a prompt is presented (in the bottom of the screen) allowing you to specify the package name and version contraints

The syntax for adding a package is as follows:

package name : version

if you do not specify a version the default will be *

Composer Remove Package

Removes a package from the required packages section in composer.json

When you select this option a list of required packages will pop up, you only need to select the package to be removed

Note: this just removes the reference from composer.json_ it will not remove any files

Edit composer.json file

this option will open a new window pointing to the composer.json file

Configuration Options

  • show_status: show messages in the status bar
  • show_output: opens an output window and shows composer working
  • composer_command: Path to composer.phar file
  • composer_install_extra: extra arguments to pass to the install command
  • composer_update_extra: extra arguments to pass to the update command
  • composer_dumpautoload_extra: extra arguments to pass to the dump-autoload command
  • composer_selfupdate_extra: extra arguments to pass to the self-update command

How is composer.json found?

The plugin tries to locate the composer.json file. It starts at the same folder of the file beeing edited and goes all the way up to the root folder. If you do not specify the composer_command option the default is to look for composer.phar on the same folder where composer.json was found