Skip to content

Commit 593d425

Browse files
committed
Init
0 parents  commit 593d425

14 files changed

+3060
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bin/
2+
vendor/

composer.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "themsaid/ibis",
3+
"description": "Markdown to PDF book builder",
4+
"keywords": [
5+
"markdown",
6+
"book",
7+
"pdf",
8+
"php"
9+
],
10+
"homepage": "https://github.com/themsaid/ibis",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Mohamed Said",
15+
"email": "themsaid@gmail.com"
16+
}
17+
],
18+
"bin": [
19+
"ibis"
20+
],
21+
"require": {
22+
"illuminate/filesystem": "^7.0",
23+
"illuminate/support": "^7.0",
24+
"symfony/console": "^4.2|^5.0",
25+
"mpdf/mpdf": "^8.0",
26+
"spatie/commonmark-highlighter": "^2.1"
27+
},
28+
"require-dev": {
29+
"symfony/var-dumper": "^5.0"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"Ibis\\": "src/"
34+
}
35+
},
36+
"config": {
37+
"sort-packages": true,
38+
"optimize-autoloader": true
39+
},
40+
"minimum-stability": "dev",
41+
"prefer-stable": true
42+
}

0 commit comments

Comments
 (0)