Initial Commit

This commit is contained in:
Riley Schneider
2025-12-03 16:38:10 +01:00
parent c5e26bf594
commit b732d8d4b5
17680 changed files with 5977495 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
{
"name": "spomky-labs/base64url",
"description": "Base 64 URL Safe Encoding/Decoding PHP Library",
"type": "library",
"license": "MIT",
"keywords": ["Base64", "URL", "Safe", "RFC4648"],
"homepage": "https://github.com/Spomky-Labs/base64url",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky-Labs/base64url/contributors"
}
],
"autoload": {
"psr-4": {
"Base64Url\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Base64Url\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.11|^0.12",
"phpstan/phpstan-beberlei-assert": "^0.11|^0.12",
"phpstan/phpstan-deprecation-rules": "^0.11|^0.12",
"phpstan/phpstan-phpunit": "^0.11|^0.12",
"phpstan/phpstan-strict-rules": "^0.11|^0.12"
}
}