Skip to content

Add Composer support#185

Closed
RobLoach wants to merge 1 commit into
necolas:masterfrom
RobLoach:composer
Closed

Add Composer support#185
RobLoach wants to merge 1 commit into
necolas:masterfrom
RobLoach:composer

Conversation

@RobLoach
Copy link
Copy Markdown

Composer is a package management system for PHP. This PR allows Normalize.css to be installed seamlessly into projects that use Composer. This is quite similar to how you can install Normalize.css using Bower.

The following is an example of a composer.json file that would download and install Normalize.css:

{
    "require": {
        "necolas/normalize.css": "*"
    },
    "minimum-stability": "dev"
}

The above is processed by running a composer install:

$ curl -sS https://getcomposer.org/installer | php
$ composer.phar install

@necolas
Copy link
Copy Markdown
Owner

necolas commented Apr 13, 2013

Thanks but it looks like people can still install normalize.css without this project including an extra manifest file. I'm going to stick with a single manifest for a generic front-end package manager like Bower.

@necolas necolas closed this Apr 13, 2013
@RobLoach
Copy link
Copy Markdown
Author

Sounds good with me! Thanks @necolas.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants