-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
113 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,61 @@ | ||
hiqdev/composer-config-plugin | ||
----------------------------- | ||
|
||
## [0.1.0] - 2016-12-26 | ||
|
||
- Added proper rebuild ([@hiqsol]) | ||
- Changed output dir to `composer-config-plugin-output` ([@hiqsol]) | ||
- Changed: splitted out `Builder` ([@hiqsol]) | ||
- Changed namespace to `hiqdev\composer\config` ([@hiqsol]) | ||
|
||
## [0.0.9] - 2016-09-22 | ||
|
||
- Fixed infinite loop in case of circular dependencies in composer | ||
- Fixed infinite loop in case of circular dependencies in composer ([@hiqsol]) | ||
|
||
## [0.0.8] - 2016-08-27 | ||
|
||
- Added showing ordered list of packages when verbose option | ||
- Added showing ordered list of packages when verbose option ([@hiqsol]) | ||
|
||
## [0.0.7] - 2016-08-26 | ||
|
||
- Fixed packages processing order again, used original `composer.json` | ||
- Fixed packages processing order again, used original `composer.json` ([@hiqsol]) | ||
|
||
## [0.0.6] - 2016-08-23 | ||
|
||
- Fixed packages processing order | ||
- Fixed packages processing order ([@hiqsol]) | ||
|
||
## [0.0.5] - 2016-06-22 | ||
|
||
- Added multiple defines | ||
- Added multiple defines ([@hiqsol]) | ||
|
||
## [0.0.4] - 2016-05-21 | ||
|
||
- Added multiple configs and params | ||
- Added multiple configs and params ([@hiqsol]) | ||
|
||
## [0.0.3] - 2016-05-20 | ||
|
||
- Changed aliases assembling | ||
- Changed aliases assembling ([@hiqsol]) | ||
|
||
## [0.0.2] - 2016-05-19 | ||
|
||
- Removed replace composer-extension-plugin | ||
- Removed replace composer-extension-plugin ([@hiqsol]) | ||
|
||
## [0.0.1] - 2016-05-18 | ||
|
||
- Added basics | ||
- Added basics ([@hiqsol]) | ||
|
||
## [Development started] - 2016-05-18 | ||
|
||
[@hiqsol]: https://github.com/hiqsol | ||
[[email protected]]: https://github.com/hiqsol | ||
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...HEAD | ||
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9 | ||
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8 | ||
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7 | ||
[0.0.6]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.5...0.0.6 | ||
[0.0.5]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.4...0.0.5 | ||
[0.0.4]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.3...0.0.4 | ||
[0.0.3]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.2...0.0.3 | ||
[0.0.2]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.1...0.0.2 | ||
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1 | ||
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,98 @@ | ||
hiqdev/composer-config-plugin | ||
----------------------------- | ||
|
||
## [0.1.0] - 2016-12-26 | ||
|
||
- Added proper rebuild | ||
- [623d741] 2016-12-26 add FailedWriteException [@hiqsol] | ||
- [c71fd6f] 2016-12-26 fixed fileGet when file does not exist [@hiqsol] | ||
- [02019cd] 2016-12-26 csfixed work with skippable [@hiqsol] | ||
- [9f4362e] 2016-12-26 + proper propagating skippable sign [@hiqsol] | ||
- [778096f] 2016-12-26 + putFile: checks if content changed before writing [@hiqsol] | ||
- [42ffadd] 2016-12-26 fixed namespace in tests [@hiqsol] | ||
- [4554fdd] 2016-12-26 csfixed [@hiqsol] | ||
- [333717a] 2016-12-26 + use dev self for .hidev/vendor [@hiqsol] | ||
- [e61e88b] 2016-12-26 + copying `__rebuild` script [@hiqsol] | ||
- Changed output dir to `composer-config-plugin-output` | ||
- [2a4a539] 2016-12-26 CHANGED output dir to `composer-config-plugin-output` [@hiqsol] | ||
- [ec65010] 2016-12-26 changed: `path()` and substituting pathes moved into Builder [@hiqsol] | ||
- [436f10d] 2016-12-25 added work with `addition` [@hiqsol] | ||
- Changed: splitted out `Builder` | ||
- [b85299b] 2016-12-25 basically finished splitting out Builder [@hiqsol] | ||
- [c53bb32] 2016-12-24 + `Helper::className()` [@hiqsol] | ||
- Changed namespace to `hiqdev\composer\config` | ||
- [ab86c3c] 2016-12-24 started BIG redoing: changed namespace, added Builder, output to other dir [@hiqsol] | ||
- [e447659] 2016-12-23 doc [@hiqsol] | ||
- [e1565a6] 2016-10-04 removed use of `::class` to be older php compatible [@hiqsol] | ||
|
||
## [0.0.9] - 2016-09-22 | ||
|
||
- Fixed infinite loop in case of circular dependencies in composer | ||
- [434673d] 2016-09-22 fixed: prevented infinite loop in case of circular dependencies [[email protected]] | ||
- [5b6b30e] 2016-09-14 improved readme [[email protected]] | ||
- [434673d] 2016-09-22 fixed: prevented infinite loop in case of circular dependencies [@hiqsol] | ||
- [5b6b30e] 2016-09-14 improved readme [@hiqsol] | ||
|
||
## [0.0.8] - 2016-08-27 | ||
|
||
- Added showing ordered list of packages when verbose option | ||
- [5de8257] 2016-08-27 added showing list of packages if verbose [[email protected]] | ||
- [5de8257] 2016-08-27 added showing list of packages if verbose [@hiqsol] | ||
|
||
## [0.0.7] - 2016-08-26 | ||
|
||
- Fixed packages processing order again, used original `composer.json` | ||
- [a9c0ba1] 2016-08-26 fixed scrutinizer issues [[email protected]] | ||
- [cc15516] 2016-08-25 redone iterateDependencies and used getPrettyName() instead of getName() [[email protected]] | ||
- [a9c0ba1] 2016-08-26 fixed scrutinizer issues [@hiqsol] | ||
- [cc15516] 2016-08-25 redone iterateDependencies and used getPrettyName() instead of getName() [@hiqsol] | ||
|
||
## [0.0.6] - 2016-08-23 | ||
|
||
- Fixed packages processing order | ||
- [c4bf7f9] 2016-08-23 more ideas [[email protected]] | ||
- [8340080] 2016-08-23 + require-dev phpunit 5.5 [[email protected]] | ||
- [e08e6c7] 2016-08-23 fixed tests for composer 5.5 [[email protected]] | ||
- [94284df] 2016-08-23 csfixed [[email protected]] | ||
- [2faafaa] 2016-08-23 redone to chkipper for bumping [[email protected]] | ||
- [0e4f55b] 2016-08-23 added fixed packages processing order [[email protected]] | ||
- [c4bf7f9] 2016-08-23 more ideas [@hiqsol] | ||
- [8340080] 2016-08-23 + require-dev phpunit 5.5 [@hiqsol] | ||
- [e08e6c7] 2016-08-23 fixed tests for composer 5.5 [@hiqsol] | ||
- [94284df] 2016-08-23 csfixed [@hiqsol] | ||
- [2faafaa] 2016-08-23 redone to chkipper for bumping [@hiqsol] | ||
- [0e4f55b] 2016-08-23 added fixed packages processing order [@hiqsol] | ||
|
||
## [0.0.5] - 2016-06-22 | ||
|
||
- Added multiple defines | ||
- [e58cc7a] 2016-06-22 allowed travis build failure for PHP 5.5 [[email protected]] | ||
- [5b84dc8] 2016-06-22 added ability to have multiple defines [[email protected]] | ||
- [827d606] 2016-05-22 csfixed [[email protected]] | ||
- [e58cc7a] 2016-06-22 allowed travis build failure for PHP 5.5 [@hiqsol] | ||
- [5b84dc8] 2016-06-22 added ability to have multiple defines [@hiqsol] | ||
- [827d606] 2016-05-22 csfixed [@hiqsol] | ||
|
||
## [0.0.4] - 2016-05-21 | ||
|
||
- Added multiple configs and params | ||
- [e9c4899] 2016-05-21 forced arrays [[email protected]] | ||
- [d1fdc77] 2016-05-20 + added multiple configs and params [[email protected]] | ||
- [e9c4899] 2016-05-21 forced arrays [@hiqsol] | ||
- [d1fdc77] 2016-05-20 + added multiple configs and params [@hiqsol] | ||
|
||
## [0.0.3] - 2016-05-20 | ||
|
||
- Changed aliases assembling | ||
- [1076668] 2016-05-20 csfixed [[email protected]] | ||
- [174c848] 2016-05-19 simplified aliases assembling [[email protected]] | ||
- [5f232e4] 2016-05-19 improved Idea [[email protected]] | ||
- [a976f3e] 2016-05-19 added Idea readme section [[email protected]] | ||
- [1076668] 2016-05-20 csfixed [@hiqsol] | ||
- [174c848] 2016-05-19 simplified aliases assembling [@hiqsol] | ||
- [5f232e4] 2016-05-19 improved Idea [@hiqsol] | ||
- [a976f3e] 2016-05-19 added Idea readme section [@hiqsol] | ||
|
||
## [0.0.2] - 2016-05-19 | ||
|
||
- Removed replace composer-extension-plugin | ||
- [0a3d1a6] 2016-05-19 removed replace composer-extension-plugin [[email protected]] | ||
- [0a3d1a6] 2016-05-19 removed replace composer-extension-plugin [@hiqsol] | ||
|
||
## [0.0.1] - 2016-05-18 | ||
|
||
- Added basics | ||
- [15e92b4] 2016-05-18 fixed getting baseDir [[email protected]] | ||
- [ec3bda1] 2016-05-18 rehideved [[email protected]] | ||
- [470dc87] 2016-05-18 looks working [[email protected]] | ||
- [65d1a3e] 2016-05-18 redoing [[email protected]] | ||
- [927a73f] 2016-05-18 + replace composer-extension-plugin [[email protected]] | ||
- [6270475] 2016-05-18 redoing [[email protected]] | ||
- [79b5c49] 2016-05-18 inited [[email protected]] | ||
- [15e92b4] 2016-05-18 fixed getting baseDir [@hiqsol] | ||
- [ec3bda1] 2016-05-18 rehideved [@hiqsol] | ||
- [470dc87] 2016-05-18 looks working [@hiqsol] | ||
- [65d1a3e] 2016-05-18 redoing [@hiqsol] | ||
- [927a73f] 2016-05-18 + replace composer-extension-plugin [@hiqsol] | ||
- [6270475] 2016-05-18 redoing [@hiqsol] | ||
- [79b5c49] 2016-05-18 inited [@hiqsol] | ||
|
||
## [Development started] - 2016-05-18 | ||
|
||
[@hiqsol]: https://github.com/hiqsol | ||
[[email protected]]: https://github.com/hiqsol | ||
[e58cc7a]: https://github.com/hiqdev/composer-config-plugin/commit/e58cc7a | ||
[5b84dc8]: https://github.com/hiqdev/composer-config-plugin/commit/5b84dc8 | ||
[827d606]: https://github.com/hiqdev/composer-config-plugin/commit/827d606 | ||
|
@@ -95,3 +121,31 @@ hiqdev/composer-config-plugin | |
[5de8257]: https://github.com/hiqdev/composer-config-plugin/commit/5de8257 | ||
[434673d]: https://github.com/hiqdev/composer-config-plugin/commit/434673d | ||
[5b6b30e]: https://github.com/hiqdev/composer-config-plugin/commit/5b6b30e | ||
[c71fd6f]: https://github.com/hiqdev/composer-config-plugin/commit/c71fd6f | ||
[02019cd]: https://github.com/hiqdev/composer-config-plugin/commit/02019cd | ||
[9f4362e]: https://github.com/hiqdev/composer-config-plugin/commit/9f4362e | ||
[778096f]: https://github.com/hiqdev/composer-config-plugin/commit/778096f | ||
[42ffadd]: https://github.com/hiqdev/composer-config-plugin/commit/42ffadd | ||
[4554fdd]: https://github.com/hiqdev/composer-config-plugin/commit/4554fdd | ||
[333717a]: https://github.com/hiqdev/composer-config-plugin/commit/333717a | ||
[e61e88b]: https://github.com/hiqdev/composer-config-plugin/commit/e61e88b | ||
[2a4a539]: https://github.com/hiqdev/composer-config-plugin/commit/2a4a539 | ||
[ec65010]: https://github.com/hiqdev/composer-config-plugin/commit/ec65010 | ||
[436f10d]: https://github.com/hiqdev/composer-config-plugin/commit/436f10d | ||
[b85299b]: https://github.com/hiqdev/composer-config-plugin/commit/b85299b | ||
[c53bb32]: https://github.com/hiqdev/composer-config-plugin/commit/c53bb32 | ||
[ab86c3c]: https://github.com/hiqdev/composer-config-plugin/commit/ab86c3c | ||
[e447659]: https://github.com/hiqdev/composer-config-plugin/commit/e447659 | ||
[e1565a6]: https://github.com/hiqdev/composer-config-plugin/commit/e1565a6 | ||
[Under development]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...HEAD | ||
[0.0.9]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.8...0.0.9 | ||
[0.0.8]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.7...0.0.8 | ||
[0.0.7]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.6...0.0.7 | ||
[0.0.6]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.5...0.0.6 | ||
[0.0.5]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.4...0.0.5 | ||
[0.0.4]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.3...0.0.4 | ||
[0.0.3]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.2...0.0.3 | ||
[0.0.2]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.1...0.0.2 | ||
[0.0.1]: https://github.com/hiqdev/composer-config-plugin/releases/tag/0.0.1 | ||
[623d741]: https://github.com/hiqdev/composer-config-plugin/commit/623d741 | ||
[0.1.0]: https://github.com/hiqdev/composer-config-plugin/compare/0.0.9...0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.9 2016-09-22 13:49:48 +0000 434673d2c6cc6021595c257a858fd1f267963f8e | ||
0.1.0 2016-12-26 14:02:05 +0000 623d74188d398bf76b34f4bc8b56bdb4f40212d5 |