forked from tighten/jigsaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.3 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
{
"name": "tightenco/jigsaw",
"description": "Simple static sites with Laravel's Blade.",
"keywords": ["blade", "laravel", "static", "site", "generator"],
"license": "MIT",
"authors": [
{
"name": "Adam Wathan",
"email": "adam.wathan@gmail.com"
}
],
"require": {
"illuminate/container": "^5.6",
"illuminate/support": "^5.6",
"illuminate/view": "^5.6",
"symfony/console": "~3.0|^4.0",
"mockery/mockery": "^1.0.0",
"mnapoli/front-yaml": "^1.5",
"symfony/yaml": "^4.0",
"erusev/parsedown-extra": "^0.7.1"
},
"require-dev": {
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "~7.0",
"friendsofphp/php-cs-fixer": "^2.12"
},
"autoload": {
"psr-4": {
"TightenCo\\Jigsaw\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"jigsaw"
],
"scripts": {
"fix" : "php vendor/bin/php-cs-fixer fix --using-cache=no"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
}
}