-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.0.0-alpha.20'
- Loading branch information
Showing
4 changed files
with
90 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} |