forked from aschmelyun/github-actions-docker-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name": "aschmelyun/cleaver",
"description": "A blazing-fast static site generator using Laravel's Blade templating engine",
"type": "project",
"license": "MIT",
"keywords": ["laravel", "static", "site", "generator", "blade", "json", "markdown"],
"authors": [
{
"name": "Andrew Schmelyun",
"email": "[email protected]",
"homepage": "https://aschmelyun.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5",
"aschmelyun/laravel-blade": "^8.0",
"symfony/finder": "^5.1",
"codedungeon/php-cli-colors": "~1.0",
"ext-json": "*",
"symfony/filesystem": "^5.1",
"erusev/parsedown-extra": "^0.8.1",
"symfony/console": "^5.1",
"tightenco/collect": "^5.4",
"kitetail/zttp": "^0.6.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5.0"
},
"autoload": {
"psr-4": {
"Aschmelyun\\Cleaver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}