Files
sugar-cube-client/composer.json
2020-02-26 20:14:47 -07:00

53 lines
1.3 KiB
JSON

{
"description": "Gitea client library.",
"homepage": "https://github.com/mooror/gitea.php",
"license": "MIT",
"name": "sitelease/gitea-php",
"type": "library",
"authors": [
{"email": "contact@sabcomputer.com", "name": "SAB International", "homepage": "http://www.sabcomputer.com"},
{"email": "cedric@belin.io", "name": "Cédric Belin", "homepage": "https://belin.io"},
{"email": "ben@sitelease.ca", "name": "Benjamin Blake", "homepage": "https://www.sitelease.ca"}
],
"autoload": {
"psr-4": {"Gitea\\": "src/"}
},
"autoload-dev": {
"files": ["vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"],
"psr-4": {"Gitea\\": "test/"}
},
"config": {
"optimize-autoloader": true
},
"keywords": [
"api",
"client",
"git",
"gitea",
"scm",
"vcs"
],
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-json": "*",
"cedx/enum": "^7.4.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"cedx/coveralls": "^10.1.0",
"consolidation/robo": "^1.4.9",
"henrikbjorn/lurker": "^1.2.0",
"phpstan/phpstan": "^0.11.5",
"phpunit/phpunit": "^8.1.2"
},
"scripts": {
"coverage": "robo coverage",
"test": "robo test"
},
"support": {
"docs": "https://github.com/mooror/gitea.php",
"issues": "https://github.com/mooror/gitea.php/issues"
}
}