-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.84 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
{
"name": "sigwin/yassg",
"description": "Yet Another Static Site Generator",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-zlib": "*",
"bentools/cartesian-product": "^1.4",
"jsw/commonmark-figure-extension": "^1.1",
"league/commonmark": "^2.3",
"phpdocumentor/type-resolver": "^1.0",
"phpstan/phpdoc-parser": "^1.0",
"presta/sitemap-bundle": "^4.0",
"spatie/commonmark-highlighter": "^3.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/expression-language": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-client": "^6.4 || ^7.0",
"symfony/property-info": "^6.4 || ^7.0",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/security-csrf": "^6.4 || ^7.0",
"symfony/serializer": "^6.4 || ^7.0",
"symfony/stopwatch": "^6.4 || ^7.0",
"symfony/translation": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0",
"symfony/web-profiler-bundle": "^6.4 || ^7.0",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"sigwin/infra": "~1.11.0"
},
"autoload": {
"psr-4": {
"Sigwin\\YASSG\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/functional/init/src/",
"Sigwin\\YASSG\\Test\\": "tests/unit",
"Sigwin\\YASSG\\Test\\Functional\\Site\\": "tests/functional/site/src/"
}
},
"bin": [
"bin/yassg"
],
"config": {
"allow-plugins": {
"symfony/runtime": true
},
"sort-packages": true
}
}