forked from Taproot/indieauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.01 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
{
"name": "taproot/indieauth",
"description": "PHP PSR-7-compliant IndieAuth Server and Client implementation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Barnaby Walters",
"email": "[email protected]"
}
],
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"Taproot\\IndieAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Taproot\\IndieAuth\\Test\\": "tests"
}
},
"require": {
"php": ">= 7.3.0",
"psr/http-message": "^1.0",
"psr/log": "^1.1||^2.0||^3.0",
"psr/http-server-middleware": "^1.0",
"indieauth/client": "^1.1",
"dflydev/fig-cookies": "^3.0",
"mf2/mf2": "^0.4.6||^0.5",
"barnabywalters/mf-cleaner": "^0.2",
"guzzlehttp/psr7": "^1.8||^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.3",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.7"
}
}