forked from themsaid/ibis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
99 lines (99 loc) · 2.46 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "hi-folks/ibis-next",
"description": "Creating EPUB and PDF ebook from Markdown",
"keywords": [
"markdown",
"book",
"pdf",
"epub",
"ebook",
"php"
],
"homepage": "https://github.com/hi-folks/ibis-next",
"license": "MIT",
"authors": [
{
"name": "Mohamed Said",
"email": "[email protected]"
},
{
"name": "Roberto Butti"
}
],
"bin": [
"ibis-next"
],
"require": {
"php": "^8.2",
"ext-ctype": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-zlib": "*",
"ext-openssl": "*",
"hi-folks/phpepub": "^1.0.0",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"mpdf/mpdf": "^8.0",
"spatie/commonmark-highlighter": "^3.0",
"symfony/console": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0"
},
"require-dev": {
"laravel/pint": "^1.2",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1",
"symfony/var-dumper": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Ibis\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"csfix": [
"pint"
],
"csfix-review": [
"pint --test"
],
"refactor": [
"rector process src"
],
"refactor-review": [
"rector process src --dry-run"
],
"code-analysis": [
"vendor/bin/phpstan analyse"
],
"test": [
"vendor/bin/pest"
],
"all-check": [
"@refactor-review",
"@csfix",
"@code-analysis",
"@test"
]
},
"scripts-descriptions": {
"csfix": "Runs Pint to fix code style.",
"csfix-review": "Runs Pint to show the code style review.",
"all-check": "Runs all checks needed.",
"refactor-review": "Runs Rector to show the code refactor review.",
"refactor": "Runs Rector and applies the refactor.",
"test": "Runs Testing via PestPHP."
},
"minimum-stability": "stable",
"prefer-stable": true
}