diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 22945e2..9be1cd9 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a7b028..3479bea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.0.0-alpha.20] - 2023-07-01 + +### Documentation + +- Update crypto funding address over configs +- Add funding to the composer configs +- Add crypto donate badge to the project readme + ## [1.0.0-alpha.19] - 2023-06-16 ### Bug Fixes diff --git a/README.md b/README.md index eb81191..87b1639 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,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) > Slim Framework response helper for JSend specification. diff --git a/composer.json b/composer.json index 9ca7164..7d8fd8b 100644 --- a/composer.json +++ b/composer.json @@ -1,78 +1,84 @@ { - "name": "nekofar/slim-jsend", - "description": "Slim Framework response helper for JSend specification.", - "license": "MIT", - "type": "library", - "authors": [ - { - "name": "Milad Nekofar", - "email": "milad@nekofar.com" - } - ], - "require": { - "php": ">=8.1", - "ext-json": "*", - "slim/http": "^1.3", - "slim/psr7": "^1.6", - "slim/slim": "^4.11" - }, - "require-dev": { - "nekofar/dev-tools": "^3.1", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1.0", - "roave/security-advisories": "dev-latest" - }, - "minimum-stability": "dev", - "prefer-stable": true, - "autoload": { - "psr-4": { - "Nekofar\\Slim\\JSend\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Tests\\": "tests/" - } - }, - "config": { - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true, - "infection/extension-installer": true, - "pestphp/pest-plugin": true, - "phpstan/extension-installer": true, - "composer/installers": true - }, - "preferred-install": "dist", - "sort-packages": true - }, - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "scripts": { - "infection": "infection", - "lint": "@scan", - "pest": "pest", - "phpcbf": "phpcbf", - "phpcs": "phpcs", - "phpstan": "phpstan analyse --no-progress --ansi --memory-limit 256M", - "scan": [ - "@phpcs", - "@phpstan" - ], - "test": [ - "@scan", - "@pest" - ] + "name": "nekofar/slim-jsend", + "description": "Slim Framework response helper for JSend specification.", + "license": "MIT", + "type": "library", + "authors": [ + { + "name": "Milad Nekofar", + "email": "milad@nekofar.com" + } + ], + "require": { + "php": ">=8.1", + "ext-json": "*", + "slim/http": "^1.3", + "slim/psr7": "^1.6", + "slim/slim": "^4.11" + }, + "require-dev": { + "nekofar/dev-tools": "^3.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", + "roave/security-advisories": "dev-latest" + }, + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "psr-4": { + "Nekofar\\Slim\\JSend\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests/" + } + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true, + "infection/extension-installer": true, + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true, + "composer/installers": true }, - "scripts-descriptions": { - "infection": "Runs Infection tests", - "pest": "Runs Pest tests", - "phpcbf": "Runs PHP_CodeSniffer fixes", - "phpcs": "Runs PHP_CodeSniffer tests", - "phpstan": "Runs PHPStan tests", - "scan": "Runs all scans!", - "test": "Runs all tests!" + "preferred-install": "dist", + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "scripts": { + "infection": "infection", + "lint": "@scan", + "pest": "pest", + "phpcbf": "phpcbf", + "phpcs": "phpcs", + "phpstan": "phpstan analyse --no-progress --ansi --memory-limit 256M", + "scan": [ + "@phpcs", + "@phpstan" + ], + "test": [ + "@scan", + "@pest" + ] + }, + "scripts-descriptions": { + "infection": "Runs Infection tests", + "pest": "Runs Pest tests", + "phpcbf": "Runs PHP_CodeSniffer fixes", + "phpcs": "Runs PHP_CodeSniffer tests", + "phpstan": "Runs PHPStan tests", + "scan": "Runs all scans!", + "test": "Runs all tests!" + }, + "funding": [ + { + "type": "custom", + "url": "https://ud.me/nekofar.crypto" } + ] }