Skip to content

Commit

Permalink
chore: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Trusted97 committed Dec 6, 2024
1 parent 4012e4b commit fc32003
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php: ["8.3"]
php: ["8.1","8.2","8.3","8.4"]

name: ⚙️ Running test for PHP ${{ matrix.php }}

Expand Down Expand Up @@ -48,8 +48,8 @@ jobs:
run: vendor/bin/phpunit -c phpunit.xml --coverage-clover clover.xml

- name: 📝 PHPStan check
run: vendor/bin/phpstan analyse src -l 9
run: vendor/bin/phpstan analyse src -l 10

- name: 📤 Upload coverage to Codecov
uses: codecov/codecov-action@v5
if: matrix.php == '8.1'
if: matrix.php == '8.3'
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@

> Developer toolbox for avoid boring setup during development
Whitecat is a developer toolbox of cli command. Each command is thought for avoid boring
setup in developing of PHP: Packages, Library, Composer Plugin or everything you're building!
Whitecat is a developer toolbox of cli command. Each command is thought for avoid boring
setup in developing of PHP: Packages, Library, Composer Plugin or everything you're building!

## Table of Contents

- [Install](#install)
- [Usage](#usage)
- [Usage](#usage)
- [Docker setup](#docker-setup)
- [Github init](#github-init)
- [GitHub Workflow](#github-workflows)
- [GitHub Issue](#github-issue)
- [GitHub Workflow](#github-workflows)
- [GitHub Issue](#github-issue)
- [GitHub Pull](#github-pull)
- [PHP CS Fixer](#php-cs-fixer)
- [PHPStan](#phpstan)
Expand Down Expand Up @@ -111,7 +111,7 @@ This command setup a basic PHPStan config file with starting level of 6 and chec
vendor/bin/whitecat phpstan:init
```

#### PHPUnit
#### PHPUnit

This command setup a basic PHPUnit config file and check if in composer is installed

Expand All @@ -123,14 +123,14 @@ vendor/bin/whitecat phpunit:init

| Repository Branch | PHP Compatibility | Status | Docs |
|-------------------|-------------------|----------------------------|-----------------------------|
| `1.x` | `^8.1` | New features and bug fixes | [Documentation 1.x](./docs) |
| `2.x` | `^8.3` | New features and bug fixes | [Documentation 1.x](./docs) |
| `1.x` | `^8.1` | New features and bug fixes | [Documentation 1.x](./docs) |

## Contributing

Any questions, bug reports or suggestions for improvement are very welcome. See the [contributing](./CONTRIBUTING.md) file for details on how to contribute.

## License

Whitecat is licensed under the MIT license.
Whitecat is licensed under the MIT license.
See the [LICENSE](./LICENSE) file for more information.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}
},
"require": {
"php": "^8.3",
"php": "^8.1",
"ext-json": "*",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0"
Expand Down

0 comments on commit fc32003

Please sign in to comment.