forked from torchlight-api/torchlight-jigsaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 862 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
{
"name": "torchlight/torchlight-jigsaw",
"description": "A Torchlight client for the static site generator Jigsaw",
"homepage": "https://torchlight.dev",
"type": "library",
"license": "MIT",
"keywords": [
"markdown",
"syntax highlighting",
"code highlighting",
"jigsaw",
"laravel"
],
"require": {
"tightenco/jigsaw": "^1.3.27",
"torchlight/torchlight-laravel": "^0.5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4"
},
"autoload": {
"psr-4": {
"Torchlight\\Jigsaw\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Torchlight\\Jigsaw\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Aaron Francis",
"email": "[email protected]"
}
]
}