-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 947 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 947 Bytes
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
36
37
38
{
"name": "tuupola/base85",
"description": "Base85 encoder and decoder for arbitrary data",
"keywords": [
"base85"
],
"homepage": "https://github.com/tuupola/base85",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "http://www.appelsiini.net/",
"role": "Developer"
}
],
"require": {
"php" : "^7.1|^8.0"
},
"autoload": {
"psr-4": {
"Tuupola\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\": "tests"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"paragonie/random_compat": "^2.0",
"phpbench/phpbench": "^0.13.0|1.0.0-alpha3",
"overtrue/phplint": "^1.0",
"phpstan/phpstan": "^0.12.68"
}
}