-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "hyn/eloquent-markdown",
"description": "Mix markdown, frontmatter and eloquent models to easily handle markdown files with meta information by treating them as objects.",
"tags": [
"markdown",
"frontmatter",
"eloquent",
"models"
],
"license": "MIT",
"authors": [
{
"name": "Daniël `Luceos` Klabbers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Hyn\\Eloquent\\Markdown\\": "src/"
}
},
"require": {
"php": ">=7.0",
"hyn/frontmatter": "^1.1",
"illuminate/support": "^5.3",
"illuminate/database": "^5.3"
},
"autoload-dev": {
"psr-4": {
"Hyn\\Eloquent\\Markdown\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"illuminate/filesystem": "^5.3",
"league/flysystem": "^1.0"
}
}