1
0
mirror of https://github.com/themsaid/ibis.git synced 2025-01-16 21:18:35 +01:00
ibis/composer.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2020-11-04 16:03:50 +02:00
{
"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": {
2023-03-22 21:38:17 +01:00
"illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
2022-06-03 17:59:28 +02:00
"mpdf/mpdf": "^8.1",
2022-11-27 19:31:49 +01:00
"spatie/commonmark-highlighter": "^2.1|^3.0",
"symfony/console": "^4.2|^5.0|^6.0"
2020-11-04 16:03:50 +02:00
},
"require-dev": {
2022-11-27 19:00:24 +01:00
"laravel/pint": "^1.2",
"symfony/var-dumper": "^5.0|^6.0"
2020-11-04 16:03:50 +02:00
},
"autoload": {
"psr-4": {
"Ibis\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
2020-11-05 09:00:25 +02:00
"scripts": {
"csfix": [
2022-11-27 19:00:24 +01:00
"pint"
],
"csfix-review": [
2022-11-27 19:00:24 +01:00
"pint --test"
2020-11-05 09:00:25 +02:00
]
},
"scripts-descriptions": {
2022-11-27 19:00:24 +01:00
"csfix": "Runs Pint to fix project files.",
"csfix-review": "Runs Pint to show the details of which files are out of code standard."
},
2020-11-04 16:03:50 +02:00
"minimum-stability": "dev",
"prefer-stable": true
}