Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed May 16, 2023
2 parents 952fead + 03d03c3 commit 4d758fb
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ updates:
labels:
- "dependencies"
# Allow up to 10 open pull requests for dependencies
open-pull-requests-limit: 10
open-pull-requests-limit: 20
# Add reviewers
reviewers:
- "nekofar"
Expand All @@ -43,7 +43,7 @@ updates:
labels:
- "dependencies"
# Allow up to 10 open pull requests for dependencies
open-pull-requests-limit: 10
open-pull-requests-limit: 20
# Add reviewers
reviewers:
- "nekofar"
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.0.0-alpha.12] - 2023-05-16

### Documentation

- Update packagist badges over readme file

### Miscellaneous Tasks

- Bump nekofar/dev-tools from ^3.0 to ^3.1
- Bump slim/psr7 from ^1.5 to ^1.6
- Bump slim/slim from ^4.8 to ^4.11
- Migrate phpunit configuration file

## [1.0.0-alpha.10] - 2023-04-27

### Miscellaneous Tasks
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
The MIT License (MIT). Please see [License File](LICENSE) for more information.

---
[icon-packagist]: https://img.shields.io/packagist/v/nekofar/slim-jsend.svg
[icon-packagist]: https://img.shields.io/packagist/v/nekofar/slim-jsend?include_prereleases
[icon-php-version]: https://img.shields.io/packagist/php-v/nekofar/slim-jsend.svg
[icon-twitter]: https://img.shields.io/badge/follow-%40nekofar-1DA1F2?logo=twitter&style=flat
[icon-coverage]: https://codecov.io/gh/nekofar/slim-jsend/graph/badge.svg
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"require": {
"php": ">=8.1",
"ext-json": "*",
"slim/psr7": "^1.5",
"slim/slim": "^4.8"
"slim/psr7": "^1.6",
"slim/slim": "^4.11"
},
"require-dev": {
"nekofar/dev-tools": "^3.0",
"nekofar/dev-tools": "^3.1",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"roave/security-advisories": "dev-latest"
Expand Down
26 changes: 11 additions & 15 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
colors="true"
testdox="false"
cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="clover.xml"/>
</report>
</coverage>
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="default">
<directory suffix=".php">./tests/</directory>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<logging/>
<coverage/>
<source>
<include>
<directory suffix=".php">src</directory>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 4d758fb

Please sign in to comment.