Lines Matching +full:- +full:composer +full:-

1Composer](http://getcomposer.org) [![Build Status](https://secure.travis-ci.org/RobLoach/component
3 Allows installation of Components via [Composer](http://getcomposer.org).
8 composer require robloach/component-installer
14 "robloach/component-installer": "*"
21 To install a Component with Composer, add the Component to your *composer.json*
26 composer require components/jquery
27 composer require components/normalize.css
35 "robloach/component-installer": "*"
65 $('body').css('background-color', 'green');
79 `component-dir` option in your root *composer.json*'s `config`. The following
88 "component-dir": "public"
97 While `component-dir` depicts where the Components will be installed,
98 `component-baseurl` tells RequireJS the base path that will use when attempting
100 `component-baseurl` points to the `component-dir` when loaded externally. See
101 more about [`baseUrl`](http://requirejs.org/docs/api.html#config-baseUrl) in the
110 "component-dir": "public/assets",
111 "component-baseurl": "/assets"
126 "component-dir": "public/assets",
127 "component-baseurl": "/assets",
128 "component-scriptFilters": {
131 "component-styleFilters": {
141 `require` the package *robloach/component-installer* and set the `type` to
149 "robloach/component-installer": "*"
169 * `scripts` - List of all the JavaScript files that will be concatenated
171 * `styles` - List of all the CSS files that should be concatenated together
173 * `files` - Any additional file assets that should be copied into the Component
228 * [`shim`](http://www.requirejs.org/docs/api.html#config-shim)
229 * [`config`](http://www.requirejs.org/docs/api.html#config-moduleconfig)
232 ### Packages Without Composer Support
234 Using [`repositories`](http://getcomposer.org/doc/05-repositories.md#repositories)
235 in *composer.json* allows use of Component Installer in packages that don't
236 explicitly provide their own *composer.json*. In the following example, we
268 "robloach/component-installer": "*"
276 ### Packages Without Component Support In *composer.json*
278 Using [`extra`](https://getcomposer.org/doc/04-schema.md#extra)
279 in *composer.json* allows use of Component Installer in packages that don't
280 explicitly provide support for component, but do ship with their own *composer.json*.
312 management systems](http://github.com/wilmoore/frontend-packagers):
323 Component Installer is licensed under the MIT License - see LICENSE.md for