-
Notifications
You must be signed in to change notification settings - Fork 1
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
71 changed files
with
2,448 additions
and
658 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,5 +1,5 @@ | ||
/vendor/ | ||
/tests/_envTest/var/ | ||
/tests_env/var/ | ||
!**/.gitkeep | ||
/composer.lock | ||
.phpunit.result.cache | ||
|
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
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,14 +1,36 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
This project adheres to [Semantic Versioning] (http://semver.org/). | ||
For change log format, use [Keep a Changelog] (http://keepachangelog.com/). | ||
|
||
All notable changes to this project will be documented in this file. This project adheres | ||
to [Semantic Versioning] (http://semver.org/). For change log format, | ||
use [Keep a Changelog] (http://keepachangelog.com/). | ||
|
||
## [2.0.0-beta1] - 2021-06-07 | ||
|
||
### Added | ||
|
||
- Console with `league/climate` library | ||
|
||
### Changed | ||
|
||
- Namespace move from `Berlioz\CliCore` to `Berlioz\Cli\Core` | ||
- Refactoring | ||
- Bump minimal compatibility to PHP 8 | ||
|
||
### Removed | ||
|
||
- Dependency to `psr/log` | ||
- Dependency to `ulrichsg/getopt-php` | ||
|
||
## [1.1.0] - 2020-11-05 | ||
|
||
### Added | ||
|
||
- PHP 8 compatibility in `composer.json` | ||
|
||
### Changed | ||
|
||
- Bump `ulrichsg/getopt-php` required package version in `composer.json` | ||
|
||
## [1.0.0] - 2020-05-29 | ||
|
||
First version |
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
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
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
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
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,13 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="./tests/bootstrap.php" colors="true"> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
bootstrap="./tests/bootstrap.php" | ||
colors="true" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</coverage> | ||
<testsuites> | ||
<testsuite name="Berlioz Framework CLI Core test suite"> | ||
<directory suffix="Test.php">./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">src</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> | ||
</phpunit> |
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,6 +1,6 @@ | ||
{ | ||
"commands": { | ||
"berlioz:cache-clear": "\\Berlioz\\CliCore\\Command\\Berlioz\\CacheClearCommand", | ||
"berlioz:config": "\\Berlioz\\CliCore\\Command\\Berlioz\\ConfigCommand" | ||
"berlioz:cache-clear": "\\Berlioz\\Cli\\Core\\Command\\Berlioz\\CacheClearCommand", | ||
"berlioz:config": "\\Berlioz\\Cli\\Core\\Command\\Berlioz\\ConfigCommand" | ||
} | ||
} |
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
Oops, something went wrong.