-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
50 lines (50 loc) · 1.02 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "thefox/hashcash",
"description": "Hashcash implementation in PHP.",
"type": "library",
"keywords": [
"proof-of-work",
"proofofwork",
"hashcash",
"hash",
"cash",
"sha1",
"pow",
"proof",
"work"
],
"homepage": "https://fox21.at",
"license": "MIT",
"authors": [
{
"name": "Christian Mayer",
"email": "[email protected]",
"homepage": "https://fox21.at"
}
],
"require": {
"php": "^7.0",
"thefox/utilities": "^1.1",
"thefox/storage": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"symfony/finder": "^3.3",
"phpstan/phpstan": "^0.7"
},
"autoload": {
"psr-4": {
"TheFox\\Pow\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TheFox\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x.x-dev"
}
}
}