{
    "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"
    },
    "repositories": [
	{
	    "type": "vcs",
	    "url": "https://git.friendi.ca/friendica/php-json-ld"
	}
    ],
    "require": {
        "doctrine/orm": "^2.6",
        "friendica/json-ld": "^1.1",
        "guzzlehttp/guzzle": "^6.3",
        "phpseclib/phpseclib": "^2.0",
        "psr/http-message": "^1.0",
        "symfony/dependency-injection": "^4.2",
        "symfony/http-kernel": "^4.2",
        "symfony/psr-http-message-bridge": "^1.1",
        "zendframework/zend-diactoros": "^1.8"
    },
    "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
    }
}