activitypub-php/composer.json

52 lines
1.2 KiB
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": {
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 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",
"guzzlehttp/guzzle": "^6.3",
2019-01-06 18:50:56 +00:00
"phpseclib/phpseclib": "^2.0",
"psr/http-message": "^1.0",
"symfony/http-kernel": "^4.2",
"symfony/psr-http-message-bridge": "^1.1",
"zendframework/zend-diactoros": "^1.8"
2018-11-14 12:13:41 +00:00
},
"require-dev": {
"phpunit/dbunit": "^4.0",
"phpunit/phpunit": "^7.4"
2018-11-14 12:13:41 +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
}
}