Skip to content

Commit 47b58ae

Browse files
committed
Updated README, CHANGELOG, and LICENCE for v1.1.0
1 parent ee112c0 commit 47b58ae

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
vendor/
33
tests/reports
44
.php_cs.cache
5+
.phpunit.result.cache
56
composer.lock

Diff for: CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## 1.0.2 - 2018-12-02
5+
## [1.1.0] - 2019-04-05
6+
#### Changed
7+
- No longer supporting PHP version <7.2
8+
- Updated code base, including tests, to support PHP7.2+
9+
- `Argument\Iterator::find()` now returns either `null` (instead of `false`) or an instance of `Argument`
10+
11+
## [1.0.2] - 2018-12-02
612
#### Added
713
- Added `__toString()` method to `Argument` class.
814
- Added unit test for `Argument`
915

10-
## 1.0.1 - 2018-12-02
16+
## [1.0.1] - 2018-12-02
1117
#### Changed
1218
- Improved regular expression for capturing arguments
1319
- Updated ArgumentIterator unit test
1420

15-
## 1.0.0 - 2018-12-02
21+
## [1.0.0] - 2018-12-02
1622
#### Added
1723
- Initial release
24+
25+
[1.1.0]: https://github.com/pointybeard/symphony-classmapper/compare/1.0.2...1.1.0
26+
[1.0.2]: https://github.com/pointybeard/symphony-classmapper/compare/1.0.1...1.0.2
27+
[1.0.1]: https://github.com/pointybeard/symphony-classmapper/compare/1.0.0...1.0.1

Diff for: LICENCE

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ follows:
44

55
----- begin license block -----
66

7-
Copyright 2018 Alannah Kearney
7+
Copyright 2018-2019 Alannah Kearney
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

Diff for: README.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# PHP Command Line Interface (CLI) Library
22

3-
- Version: v1.0.2
4-
- Date: December 2nd 2018
3+
- Version: v1.1.0
4+
- Date: April 5th 2019
55
- [Release notes](https://github.com/pointybeard/php-cli-lib/blob/master/CHANGELOG.md)
66
- [GitHub repository](https://github.com/pointybeard/php-cli-lib)
77

88
Collection of helpful classes to use when working on the command line (cli).
99

1010
## Installation
1111

12-
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/php-cli-lib` or add `"pointybeard/php-cli-lib": "~1.0"` to your `composer.json` file.
12+
This library is installed via [Composer](http://getcomposer.org/). To install, use `composer require pointybeard/php-cli-lib` or add `"pointybeard/php-cli-lib": "~1.1"` to your `composer.json` file.
1313

1414
And run composer to update your dependencies:
1515

@@ -154,18 +154,10 @@ You can check that all code is passing by running the following command from the
154154

155155
./vendor/bin/phpunit --bootstrap vendor/autoload.php tests/ArgumentsTest
156156

157-
If you want to run code coverage (e.g. `--coverage-html tests/reports/ ...`) you'll need an older version of xdebug (for PHP 5.6). To install this, use the following commands:
157+
If you want to run code coverage (e.g. `--coverage-html tests/reports/ ...`) you'll to install xdebug:
158158

159159
pecl channel-update pecl.php.net
160-
pecl install xdebug-2.5.5
161-
162-
You'll need enable `xdebug.so`. Try adding the following to `/etc/php/5.6/mods-available`
163-
164-
; configuration for php xdebug module
165-
; priority=20
166-
zend_extension=/usr/lib/php/20131226/xdebug.so
167-
168-
Then enable it with `phpenmod xdebug`. The above works on Ubuntu, however, paths might be different for other distros.
160+
pecl install xdebug
169161

170162
## Support
171163

0 commit comments

Comments
 (0)