This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
indieauth/composer.json

39 lines
994 B
JSON
Raw Normal View History

{
"name": "taproot/indieauth",
"description": "PHP PSR-7-compliant IndieAuth Server and Client implementation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Barnaby Walters",
"email": "barnaby@waterpigs.co.uk"
}
],
"autoload": {
"files": ["src/functions.php"],
"psr-4": {
"Taproot\\IndieAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Taproot\\IndieAuth\\Test\\": "tests"
}
},
"require": {
"psr/http-message": "^1.0",
"psr/log": "^1.1",
2021-06-07 23:58:19 +01:00
"nyholm/psr7": "1.4.x-dev",
"indieauth/client": "^1.1",
"psr/http-server-middleware": "^1.0",
"dflydev/fig-cookies": "^3.0",
"mf2/mf2": "^0.4.6",
"barnabywalters/mf-cleaner": "^0.1.4",
"guzzlehttp/psr7": "^1.8"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.3",
"phpunit/phpunit": "^9.5"
}
}