-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
35 lines (35 loc) · 1008 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
}
}