orbit/composer.json

29 lines
581 B
JSON
Raw Permalink Normal View History

2020-08-27 00:57:01 +02:00
{
"name": "sumpygump/orbit",
"description": "Server for gemini protocol",
"license": "MIT",
"authors": [
{
"name": "Jansen Price",
"email": "sumpygump@tilde.tam"
}
],
"require": {
2020-10-04 06:51:41 +02:00
"php": ">=7.2",
2020-08-27 00:57:01 +02:00
"sumpygump/qi-console": "^1.3",
2020-09-03 21:11:09 +02:00
"monolog/monolog": "^2.1",
"neitanod/forceutf8": "^2.0"
2020-08-27 00:57:01 +02:00
},
2020-09-06 07:43:08 +02:00
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"bin": [
"bin/orbit"
],
2020-08-27 00:57:01 +02:00
"autoload": {
"psr-4" : {
"Orbit\\" : "src/Orbit"
}
}
}