matrix-php-sdk/composer.json
2022-06-23 21:20:33 +10:00

50 lines
1.1 KiB
JSON

{
"name": "Aryess/PhpMatrixSdk",
"type": "library",
"description": "Later",
"keywords": [
"Aryess",
"PhpMatrixSdk"
],
"homepage": "https://github.com/Aryess/PhpMatrixSdk",
"license": "MIT",
"authors": [
{
"name": "Yoann Celton",
"email": "aryess@github.com",
"homepage": "https://github.com/aryess",
"role": "Developer"
}
],
"require": {
"php" : "~5.6|~7.0"
},
"require-dev": {
"phpunit/phpunit" : ">=5.4.3",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Aryess\\PhpMatrixSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Aryess\\PhpMatrixSdk\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}