Skip to content

Commit

Permalink
Merge pull request #12 from browner12/major-bump
Browse files Browse the repository at this point in the history
Major Release
  • Loading branch information
browner12 authored Aug 1, 2017
2 parents 08c964a + 7e1231e commit cb5fef4
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 358 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip

## [UNRELEASED]

## [2.0.0] - 2017-07-31

### Added
- added note about Laravel package discovery in setup notes [3691e3a](https://github.com/browner12/helpers/commit/3691e3a681bfba2ceb32fff037d126d41f8661dc)

### Changed
- bumped PHP minimum version to 5.6.0 [4367c03](https://github.com/browner12/helpers/commit/4367c03fd068241ace3b575ef605501a4676aa6b)
- updated the money helper to use the [MoneyPHP Package](https://github.com/moneyphp/money) [3e1c5df](https://github.com/browner12/helpers/commit/3e1c5dfa2b9810769c85d60d9c7e561fc7a7a6de)

### Removed
- removed helpers that return HTML. these are better handled by [components](https://laravel.com/docs/5.4/blade#components-and-slots). [ec22a5f](https://github.com/browner12/helpers/commit/ec22a5f82a609511c2dec3911fedc62b71a76d76)

## [1.1.1] - 2017-07-16

### Changed
Expand Down Expand Up @@ -45,7 +57,8 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
### Added
- new helpers package

[unreleased]: https://github.com/browner12/helpers/compare/v1.1.1...HEAD
[unreleased]: https://github.com/browner12/helpers/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/browner12/helpers/compare/v1.1.1...v2.0.0
[1.1.1]: https://github.com/browner12/helpers/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/browner12/helpers/compare/v1.0.4...v1.1.0
[1.0.4]: https://github.com/browner12/helpers/compare/v1.0.3...v1.0.4
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Add the service provider to the providers array in `config/app.php`.
];
```

If you are using Laravel's automatic package discovery, you can skip this step.

## Publishing

You can publish everything at once
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.5.9",
"php": ">=5.6.0",
"illuminate/console": "~5.2",
"illuminate/contracts": "~5.2",
"illuminate/support": "~5.2"
Expand All @@ -26,6 +26,9 @@
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"suggest": {
"moneyphp/money": "Money value object."
},
"autoload": {
"psr-4": {
"browner12\\helpers\\": "src"
Expand Down
231 changes: 0 additions & 231 deletions src/Helpers/buttons.php

This file was deleted.

56 changes: 0 additions & 56 deletions src/Helpers/confirm.php

This file was deleted.

Loading

0 comments on commit cb5fef4

Please sign in to comment.