Skip to content

Commit

Permalink
Merge pull request #224 from koriym/fix_illegal_composer_json
Browse files Browse the repository at this point in the history
Fix illegal space (0xE38080) in composer.json
  • Loading branch information
koriym authored Dec 12, 2022
2 parents 3f1ace5 + ac447dd commit 3f0cfba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Alternatively, [download a release][], or clone this repository, then map the

## Dependencies

This package requires PHP 8.1 or later; it has also been tested on PHP 8.1.
This package requires PHP 8.1 or later; it has also been tested on PHP 8.1-8.2.
We recommend using the latest available version of PHP as a matter of
principle.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
],
"require": {
"php": ">=8.1",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"ext-pdo": "*"
},
"autoload": {
Expand Down

0 comments on commit 3f0cfba

Please sign in to comment.