Skip to content

Commit

Permalink
docs(~): Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed May 26, 2015
1 parent 00b40a3 commit 9de873c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 2 additions & 3 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.*"
}
}
```
Expand Down Expand Up @@ -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:

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "1.0.x-dev"
},
"class": "ComponentInstaller\\ComponentInstallerPlugin"
},
Expand All @@ -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"
]
}
}

0 comments on commit 9de873c

Please sign in to comment.