Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-alpha.20'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 1, 2023
2 parents a353dd2 + a9e7f96 commit b84e693
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 75 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
@@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
154 changes: 80 additions & 74 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit b84e693

Please sign in to comment.