-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.61 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
53
54
55
56
57
58
59
{
"name": "foundation/proton",
"description": "Proton Site Builder",
"keywords": ["framework", "foundation", "cli", "static site", "twig", "cms"],
"homepage": "https://github.com/foundation/proton",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/foundation/proton/issues",
"source": "https://github.com/foundation/proton"
},
"authors": [
{
"name": "Joe Workman",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"aptoma/twig-markdown": "^3.4",
"gajus/dindent": "^2.0",
"laravel-zero/phar-updater": "^1.0.6",
"michelf/php-markdown": "^1.9",
"pug/twig": "^1.2",
"samdark/sitemap": "^2.4",
"spatie/file-system-watcher": "^1.1",
"spatie/ray": "^1.32",
"twig/twig": "^3.3",
"webuni/front-matter": "^1.3",
"wyrihaximus/html-compress": "^4.1"
},
"require-dev": {
"laravel-zero/framework": "^9.1",
"mockery/mockery": "^1.4.3",
"pestphp/pest": "^1.3",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/proton"]
}