Skip to content

Commit

Permalink
Merge branch 'release/3.1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 1, 2023
2 parents 017a40e + 3f5d617 commit cbe39a7
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# These are supported funding model platforms

github: nekofar
custom: https://unstoppabledomains.com/d/nekofar.crypto
custom: https://ud.me/nekofar.crypto
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [3.1.5] - 2023-07-01

### <!-- 05 -->Documentation

- Update crypto funding address over configs
- Add funding to the composer configs
- Add crypto donate badge to the project readme

## [3.1.4] - 2023-05-29

### <!-- 02 -->Bug Fixes
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
[![Coverage Status][icon-coverage]][link-coverage]
[![License][icon-license]][link-license]
[![Twitter: nekofar][icon-twitter]][link-twitter]
[![Donate](https://img.shields.io/badge/donate-nekofar.crypto-a2b9bc?logo=ko-fi&logoColor=white)](https://ud.me/nekofar.crypto)

> This package is a plugin for [Pest PHP](https://pestphp.com).
The Slim Plugin for Pest gives your basic functionality for testing your API's built by Slim.
Expand Down
140 changes: 73 additions & 67 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,71 +1,77 @@
{
"name": "nekofar/pest-plugin-slim",
"description": "The Pest Slim Plugin",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"slim"
],
"license": "MIT",
"require": {
"php": ">=8.1",
"nekofar/slim-test": "^3.2",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin": "^2.0"
},
"conflict": {
"nekofar/slim-test": "<=3.2.0"
},
"require-dev": {
"nekofar/dev-tools": "^3.1",
"pestphp/pest-dev-tools": "^2.0",
"php-di/slim-bridge": "^3.0",
"roave/security-advisories": "dev-latest"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Nekofar\\Slim\\Pest\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
"name": "nekofar/pest-plugin-slim",
"description": "The Pest Slim Plugin",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"slim"
],
"license": "MIT",
"require": {
"php": ">=8.1",
"nekofar/slim-test": "^3.2",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin": "^2.0"
},
"conflict": {
"nekofar/slim-test": "<=3.2.0"
},
"require-dev": {
"nekofar/dev-tools": "^3.1",
"pestphp/pest-dev-tools": "^2.0",
"php-di/slim-bridge": "^3.0",
"roave/security-advisories": "dev-latest"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Nekofar\\Slim\\Pest\\": "src/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "php-cs-fixer fix -v",
"test": [
"@test:lint",
"@test:unit"
],
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always"
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "php-cs-fixer fix -v",
"test": [
"@test:lint",
"@test:unit"
],
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always"
},
"funding": [
{
"type": "custom",
"url": "https://ud.me/nekofar.crypto"
}
]
}

0 comments on commit cbe39a7

Please sign in to comment.