-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.16 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.16 KB
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
{
"name": "dandy/book",
"description": "A PHP tool that helps you write eBooks in markdown and convert to PDF.",
"keywords": ["..."],
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Alexandr Chernyaev",
"email": "bliz48rus@gmail.com",
"homepage": "https://tabuna.github.io",
"role": "Developer"
}
],
"require": {
"akh/typograf": "^0.7.0",
"illuminate/collections": "^12.0",
"illuminate/filesystem": "^12.0",
"illuminate/support": "^12.0",
"jolicode/jolitypo": "^1.2",
"laravelsu/highlight": "@dev",
"mpdf/mpdf": "^8.2",
"symfony/console": "^7.3",
"symfony/css-selector": "^7.3",
"symfony/dom-crawler": "^7.0",
"vanderlee/syllable": "^1.9"
},
"require-dev": {
"symfony/var-dumper": "^7.3",
"laravel/pint": "v1.22.1"
},
"autoload": {
"psr-4": {
"Dandy\\Book\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dandy\\Book\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}