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 13:08:15 +00:00
|
|
|
}
|
2018-11-14 12:13:41 +00:00
|
|
|
],
|
2018-11-14 13:08:15 +00:00
|
|
|
"scripts": {
|
2018-11-24 03:25:56 +00:00
|
|
|
"test": "phpunit -c ./test/config.xml test",
|
2019-01-06 18:50:56 +00:00
|
|
|
"test-debug": "XDEBUG_CONFIG='idekey=ap_session' php ./vendor/bin/phpunit test",
|
|
|
|
"docs": "phpdoc -d ./src -t ./docs"
|
2018-11-14 13:08:15 +00:00
|
|
|
},
|
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",
|
2018-12-17 17:32:32 +00:00
|
|
|
"friendica/json-ld": "^1.1",
|
2019-01-14 16:12:47 +00:00
|
|
|
"guzzlehttp/guzzle": "^6.3",
|
2019-01-06 18:50:56 +00:00
|
|
|
"phpseclib/phpseclib": "^2.0",
|
2019-01-17 17:50:17 +00:00
|
|
|
"psr/http-message": "^1.0",
|
2019-01-14 16:12:47 +00:00
|
|
|
"symfony/http-kernel": "^4.2",
|
2019-01-17 19:47:30 +00:00
|
|
|
"symfony/psr-http-message-bridge": "^1.1",
|
|
|
|
"zendframework/zend-diactoros": "^1.8"
|
2018-11-14 12:13:41 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2018-11-19 12:14:58 +00:00
|
|
|
"phpunit/dbunit": "^4.0",
|
|
|
|
"phpunit/phpunit": "^7.4"
|
2018-11-14 12:13:41 +00:00
|
|
|
},
|
2018-11-14 13:08:15 +00:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"ActivityPub\\": "src/"
|
|
|
|
}
|
|
|
|
},
|
2018-11-24 03:25:56 +00:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"ActivityPub\\Test\\": "test/"
|
|
|
|
}
|
|
|
|
},
|
2018-11-14 12:13:41 +00:00
|
|
|
"config": {
|
|
|
|
"sort-packages": true
|
|
|
|
}
|
|
|
|
}
|