speedwork/installer

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

A composer plugin, to help install packages of different types.

Installs: 454

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 2

Open Issues: 0

Type:composer-plugin

v1.0.3 2016-10-03 05:24 UTC

This package is not auto-updated.

Last update: 2018-06-29 16:31:20 UTC


README

codecov StyleCI SensioLabsInsight Latest Stable Version Latest Unstable Version License Total Downloads Build status Build Status

A composer plugin, to install differenty types of composer packages in custom directories outside the default composer default installation path which is in the vendor folder.

Installation

  • Include the composer plugin into your composer.json require section::
  "require":{
    "php": ">=5.3",
    "speedwork/installer": "dev-master"
  }

Manage assests in components, modules and widgets

  "extra": {
      "assets-dir" : "mypackage",
      "assets" : {
        "src/mypackage/assets/*.js" : "js/",
        "src/mypackage/assets/*.css" : "css/",
        "src/mypackage/assets/fonts/*" : "fonts/"
     }
  }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Make your changes
  4. Run the tests, adding new ones for your own code if necessary (phpunit)
  5. Commit your changes (git commit -am 'Added some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create new Pull Request