diff --git a/.travis.yml b/.travis.yml index be2c488..801921d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,11 +9,8 @@ php: - 7.0 - hhvm -matrix: - allow_failures: - - php: hhvm - -before_script: composer install --dev +before_script: composer install +script: composer test notifications: email: false diff --git a/LICENSE.md b/LICENSE.md index 988cc16..12198dc 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,9 +1,8 @@ -LICENSE -======= +# License Component Installer is released under the MIT License: -> Copyright (C) 2013 [Rob Loach](http://robloach.net) +> Copyright (C) 2015 [Rob Loach](http://robloach.net) > > Permission is hereby granted, free of charge, to any person obtaining > a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 9b69cd4..89c6065 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ To install a Component with Composer, add the Component to your *composer.json* { "require": { "components/jquery": "1.9.*", - "components/normalize.css": "2.*" + "components/normalize.css": "2.*", + "robloach/component-installer": "1.*" } } ``` @@ -288,8 +289,8 @@ Using `extra` with packages that ship with Component Installer, will override co ### Backwards Compatibility Newer versions of composer made backwards incompatible changes to the way -plugins work. In order for `components-installer` to work on newer versions of -composer, a backwards incompatibile fix had to be made. If you are using an +plugins work. In order for `component-installer` to work on newer versions of +Composer, a backwards incompatibile fix had to be made. If you are using an older version of composer, please make sure to explicitly require version `0.0.12` in your root `composer.json` file. Example: diff --git a/composer.json b/composer.json index 4f680db..b8d7468 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "1.0.x-dev" }, "class": "ComponentInstaller\\ComponentInstallerPlugin" }, @@ -26,19 +26,19 @@ "composer-plugin-api": "1.0.0" }, "require-dev": { - "composer/composer": "1.*", + "composer/composer": "1.*@alpha", "phpunit/phpunit": "4.*" }, "scripts": { "test": "phpunit" }, - "minimum-stability": "alpha", "archive": { "exclude": [ "tests", "phpunit.xml.dist", ".travis.yml", - ".gitignore" + ".gitignore", + ".editorconfig" ] } }