-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
86 lines (86 loc) · 2.62 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "stenope/stenope",
"description": "Static site builder for Symfony",
"keywords": ["static", "symfony", "blog"],
"type": "symfony-bundle",
"homepage": "https://github.com/StenopePHP/Stenope",
"license": "MIT",
"authors": [
{
"name": "Thomas Jarrand",
"email": "[email protected]",
"homepage": "https://thomas.jarrand.fr"
},
{
"name": "Maxime Steinhausser",
"email": "[email protected]",
"homepage": "https://github.com/ogizanagi"
}
],
"autoload": {
"psr-4": {
"Stenope\\Bundle\\": "src"
},
"files": [
"src/ExpressionLanguage/exprs.php"
]
},
"autoload-dev": {
"psr-4": {
"Stenope\\Bundle\\Tests\\": "tests",
"App\\": "tests/fixtures/app/src"
}
},
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-dom": "*",
"erusev/parsedown": "^1.7.4",
"symfony/asset": "^6.1|^7.0",
"symfony/config": "^6.1|^7.0",
"symfony/console": "^6.1|^7.0",
"symfony/css-selector": "^6.1|^7.0",
"symfony/dependency-injection": "^6.1|^7.0",
"symfony/dom-crawler": "^6.1|^7.0",
"symfony/event-dispatcher": "^6.1|^7.0",
"symfony/filesystem": "^6.1|^7.0",
"symfony/finder": "^6.1|^7.0",
"symfony/http-foundation": "^6.1|^7.0",
"symfony/http-kernel": "^6.1|^7.0",
"symfony/mime": "^6.1|^7.0",
"symfony/process": "^6.1|^7.0",
"symfony/property-access": "^6.1|^7.0",
"symfony/routing": "^6.1|^7.0",
"symfony/serializer": "^6.1|^7.0",
"symfony/stopwatch": "^6.1|^7.0",
"symfony/string": "^6.1|^7.0",
"symfony/yaml": "^6.1|^7.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0",
"fig/log-test": "^1.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.6",
"phpunit/phpunit": "^9.6",
"psr/log": "^1|^2",
"symfony/browser-kit": "^6.1|^7.0",
"symfony/expression-language": "^6.1|^7.0",
"symfony/framework-bundle": "^6.1|^7.0",
"symfony/monolog-bundle": "^3.7",
"symfony/phpunit-bridge": "^6.1|^7.0",
"symfony/twig-bridge": "^6.1|^7.0",
"symfony/twig-bundle": "^6.1|^7.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}