Configuring Composer & using autoloader
parent
2f2896a3c8
commit
7e6e36ced7
@ -1 +1,2 @@
|
|||||||
.idea/
|
.idea/
|
||||||
|
vendor/
|
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
"name": "darkelfe14728/commandline",
|
||||||
|
"description": "Command line management library (CLI)",
|
||||||
|
"keywords": [ "cli", "parser" ],
|
||||||
|
|
||||||
|
"minimum-stability": "dev",
|
||||||
|
"require": {
|
||||||
|
"php": "^5.6 || ^7.0"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"CommandLine\\": "src/CommandLine/"
|
||||||
|
},
|
||||||
|
"exclude-from-classmap": [ "Tests/" ]
|
||||||
|
},
|
||||||
|
|
||||||
|
"readme": "README.md",
|
||||||
|
"homepage": "https://github.com/darkelfe14728/PhpCommandLine",
|
||||||
|
"license": "CC-BY-4.0",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Julien Rosset",
|
||||||
|
"email": "jul.rosset@gmail.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"support": {
|
||||||
|
"email": "jul.rosset@gmail.com",
|
||||||
|
"issues": "https://github.com/darkelfe14728/PhpCommandLine/issues",
|
||||||
|
"wiki": "https://github.com/darkelfe14728/PhpCommandLine/wiki",
|
||||||
|
"docs": "https://github.com/darkelfe14728/PhpCommandLine/wiki",
|
||||||
|
"source": "https://github.com/darkelfe14728/PhpCommandLine"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue