activitypub-php/composer.json

63 lines
1.6 KiB
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",
"docs": "phpdoc -d ./src -t ./docs"
},
"require": {
"php": "^5.5 || ^7.0",
"ext-json": "*",
"cache/apc-adapter": "0.3.2",
"cache/apcu-adapter": "0.2.2",
"cache/filesystem-adapter": "0.3.3",
"doctrine/annotations": "1.2.7",
"doctrine/cache": "1.6.2",
"doctrine/collections": "1.3.0",
"doctrine/common": "2.6.2",
"doctrine/instantiator": "1.0.5",
"doctrine/orm": "2.5.14",
"guzzlehttp/guzzle": "^6.3",
"ml/json-ld": "1.1.0",
"monolog/monolog": "^1.0",
"phpseclib/phpseclib": "^2.0",
"psr/http-message": "^1.0",
"ramsey/uuid": "3.8.0",
"symfony/dependency-injection": "^3.4",
"symfony/event-dispatcher": "^3.4",
"symfony/http-foundation": "^3.4",
"symfony/http-kernel": "^3.4",
"symfony/psr-http-message-bridge": "^1.1",
"zendframework/zend-diactoros": "1.4.1"
},
"require-dev": {
"ext-pdo": "*",
"cache/array-adapter": "0.4.2",
"phpunit/dbunit": "^2.0",
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"ActivityPub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ActivityPub\\Test\\": "test/"
}
},
"config": {
"sort-packages": true
}
}