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

42 lines
1.1 KiB
JSON

{
"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",
"nyholm/psr7": "^1.4",
"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",
"webmozart/path-util": "^2.3",
"php": ">= 7.3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.3",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.7"
}
}