console-writer/composer.json
fristi ea2824535a
Squashed commit of the following:
commit 2e6c1b4ca3
Author: fristi <fristi@danmaku.moe>
Date:   Thu Sep 26 11:17:57 2019 +0200

    Fixed namespaces.

commit 6783a9755a
Author: fristi <fristi@danmaku.moe>
Date:   Thu Sep 26 10:54:37 2019 +0200

    Re-added lost files from last commit.

commit 9c90879777
Author: fristi <fristi@danmaku.moe>
Date:   Thu Sep 26 10:53:16 2019 +0200

    Adapted project file structure to conform with composer standards.

commit 4720c49a85
Author: fristi <fristi@danmaku.moe>
Date:   Thu Sep 26 10:43:38 2019 +0200

    Laravel dependency removed; Package now solely depends on Symfony's Console component.

    + Moved classes, modified paths to reflect dependency change.

commit 914488bec2
Author: fristi <fristi@danmaku.moe>
Date:   Tue Sep 24 15:46:29 2019 +0200

    Renamed package to laravel-console-writer and fixed namespaces.
2019-09-26 12:41:01 +02:00

32 lines
624 B
JSON

{
"name": "danmaku/console-writer",
"type": "library",
"description": "Easily adaptable console input/output writer for Symfony.",
"authors": [
{
"name": "Marvin Schreurs",
"email": "fristi@danmaku.moe",
"homepage": "https://fristi.danmaku.moe",
"role": "Developer"
}
],
"support": {
"email": "fristi@danmaku.moe"
},
"keywords": [
"console",
"symfony"
],
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=7.2.0",
"symfony/console": "^4.2"
},
"autoload": {
"psr-4": {
"Danmaku\\Console\\": "src/Console"
}
}
}