mirror of
https://github.com/themsaid/ibis.git
synced 2025-01-16 13:09:27 +01:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "themsaid/ibis",
|
|
"description": "Markdown to PDF book builder",
|
|
"keywords": [
|
|
"markdown",
|
|
"book",
|
|
"pdf",
|
|
"php"
|
|
],
|
|
"homepage": "https://github.com/themsaid/ibis",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Mohamed Said",
|
|
"email": "themsaid@gmail.com"
|
|
}
|
|
],
|
|
"bin": [
|
|
"ibis"
|
|
],
|
|
"require": {
|
|
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
|
|
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
|
|
"mpdf/mpdf": "^8.1",
|
|
"spatie/commonmark-highlighter": "^2.1|^3.0",
|
|
"symfony/console": "^4.2|^5.0|^6.0"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.2",
|
|
"symfony/var-dumper": "^5.0|^6.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Ibis\\": "src/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
},
|
|
"scripts": {
|
|
"csfix": [
|
|
"pint"
|
|
],
|
|
"csfix-review": [
|
|
"pint --test"
|
|
]
|
|
},
|
|
"scripts-descriptions": {
|
|
"csfix": "Runs Pint to fix project files.",
|
|
"csfix-review": "Runs Pint to show the details of which files are out of code standard."
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|