Skip to content

Commit

Permalink
Add a changelog and bump documented version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpbloch committed Apr 16, 2020
1 parent 4813d51 commit bb894f3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ To set up a custom WordPress build package to use this as a custom installer, ad
```json
"type": "wordpress-core",
"require": {
"johnpbloch/wordpress-core-installer": "^1.0"
"johnpbloch/wordpress-core-installer": "^2.0"
}
```

If you need to maintain support for PHP versions lower than 5.6 (not recommended!), use `^1.0` as your version constraint in the above.

By default, this package will install a `wordpress-core` type package in the `wordpress` directory. To change this you can add the following to either your custom WordPress core type package or the root composer package:

```json
Expand All @@ -43,3 +45,16 @@ The root composer package can also declare custom paths as an object keyed by pa

### License
This is licensed under the GPL version 2 or later.

### Changelog

##### 2.0.0
- Added support for Composer v2. Special thanks to @Ayesh for the original pull request to add this support.
- Bumped minimum required PHP version to 5.6 (same as WP). If you need to stick with an older PHP version, you're probably ok with also sticking with an older version of Composer and can continue to use `^1.0` as your version constraint.
- Other various fixes and improvements to README, tests, etc.

##### 1.0.0
- Initial stable release
- Added tests and CI
- Support added for custom vendor directories
- Added sanity check for overwriting sensitive directories

0 comments on commit bb894f3

Please sign in to comment.