activitypub-php/composer.json

46 lines
1014 B
JSON

{
"name": "pterotype/activitypub-php",
"description": "An ActivityPub library",
"license": "MIT",
"authors": [
{
"name": "Jeremy Dormitzer",
"email": "jeremy@dormitzer.net",
"homepage": "https://jeremydormitzer.com",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit -c ./test/config.xml test",
"test-debug": "XDEBUG_CONFIG='idekey=ap_session' php ./vendor/bin/phpunit test"
},
"repositories": [
{
"type": "vcs",
"url": "https://git.friendi.ca/friendica/php-json-ld"
}
],
"require": {
"doctrine/orm": "^2.6",
"friendica/json-ld": "^1.1",
"phpseclib/phpseclib": "^2.0"
},
"require-dev": {
"phpunit/dbunit": "^4.0",
"phpunit/phpunit": "^7.4"
},
"autoload": {
"psr-4": {
"ActivityPub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ActivityPub\\Test\\": "test/"
}
},
"config": {
"sort-packages": true
}
}