commit2e6c1b4ca3Author: fristi <fristi@danmaku.moe> Date: Thu Sep 26 11:17:57 2019 +0200 Fixed namespaces. commit6783a9755aAuthor: fristi <fristi@danmaku.moe> Date: Thu Sep 26 10:54:37 2019 +0200 Re-added lost files from last commit. commit9c90879777Author: fristi <fristi@danmaku.moe> Date: Thu Sep 26 10:53:16 2019 +0200 Adapted project file structure to conform with composer standards. commit4720c49a85Author: 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. commit914488bec2Author: fristi <fristi@danmaku.moe> Date: Tue Sep 24 15:46:29 2019 +0200 Renamed package to laravel-console-writer and fixed namespaces.
32 lines
624 B
JSON
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"
|
|
}
|
|
}
|
|
}
|