Initial commit
This commit is contained in:
68
composer.json
Normal file
68
composer.json
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"name" : "magdev/dossier",
|
||||
"type" : "project",
|
||||
"description" : "Create your dossier from Markdown files",
|
||||
"license" : "MIT",
|
||||
"authors" : [{
|
||||
"name" : "Marco Grätsch",
|
||||
"email" : "magdev3.0@gmail.com"
|
||||
}
|
||||
],
|
||||
"autoload" : {
|
||||
"psr-4" : {
|
||||
"Magdev\\Dossier\\" : "src"
|
||||
}
|
||||
},
|
||||
"require" : {
|
||||
"php" : "~7.2",
|
||||
"ext-phar" : "*",
|
||||
"ext-SPL" : "*",
|
||||
"ext-date" : "*",
|
||||
"ext-fileinfo" : "*",
|
||||
"ext-mbstring" : "*",
|
||||
"ext-bz2" : "*",
|
||||
"symfony/console" : "^4.1",
|
||||
"symfony/translation" : "^4.1",
|
||||
"symfony/config" : "^4.1",
|
||||
"symfony/dependency-injection" : "^4.1",
|
||||
"symfony/event-dispatcher" : "^4.1",
|
||||
"symfony/process" : "^4.1",
|
||||
"symfony/dotenv" : "^4.1",
|
||||
"twig/twig" : "^2.4",
|
||||
"mnapoli/front-yaml" : "^1.6",
|
||||
"oyejorge/less.php" : "v1.7.0.14",
|
||||
"erusev/parsedown-extra" : "^0.7.1",
|
||||
"zaininnari/html-minifier" : "*",
|
||||
"leafo/scssphp" : "^0.7.6",
|
||||
"adbario/php-dot-notation" : "^2.0",
|
||||
"magdev/console-form" : "^0.0.7",
|
||||
"monolog/monolog" : "^1.23",
|
||||
"pdfshift/pdfshift-php" : "~1.0.2"
|
||||
},
|
||||
"config" : {
|
||||
"bin-dir" : "bin"
|
||||
},
|
||||
"extra" : {
|
||||
"phar-builder" : {
|
||||
"compression" : "BZip2",
|
||||
"name" : "dossier.phar",
|
||||
"output-dir" : "./bin/",
|
||||
"entry-point" : "bin/dossier.php",
|
||||
"include" : [
|
||||
"app"
|
||||
],
|
||||
"include-dev" : false,
|
||||
"events" : {
|
||||
"command.package.end" : [
|
||||
"chmod +x ./bin/dossier.phar"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"repositories" : [{
|
||||
"type" : "git",
|
||||
"url" : "git@github.com:magdev/console-form.git",
|
||||
"name" : "magdev/console-form"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user