activitypub-php/composer.json

38 lines
751 B
JSON
Raw Normal View History

2018-11-14 12:13:41 +00:00
{
"name": "pterotype/activitypub-php",
"description": "An ActivityPub library",
"license": "MIT",
"authors": [
{
"name": "Jeremy Dormitzer",
"email": "jeremy@dormitzer.net",
"homepage": "https://jeremydormitzer.com",
"role": "Developer"
}
2018-11-14 12:13:41 +00:00
],
"scripts": {
"test": "phpunit test"
},
2018-11-14 12:13:41 +00:00
"repositories": [
{
"type": "vcs",
"url": "https://git.friendi.ca/friendica/php-json-ld"
}
],
"require": {
2018-11-14 13:29:01 +00:00
"doctrine/orm": "^2.6",
"friendica/json-ld": "^1.1"
2018-11-14 12:13:41 +00:00
},
"require-dev": {
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"ActivityPub\\": "src/"
}
},
2018-11-14 12:13:41 +00:00
"config": {
"sort-packages": true
}
}