-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·52 lines (52 loc) · 1.22 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": "hamlet/hamlet-core",
"type": "framework",
"description": "Hamlet Framework",
"keywords": ["framework"],
"license": "Apache-2.0",
"authors": [
{
"name": "Vasily Kartashov",
"email": "[email protected]"
}
],
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"sort-packages": true
},
"require": {
"php": "^7.3 || ^8",
"ext-json": "@stable",
"guzzlehttp/psr7": "@stable",
"psr/cache": "@stable",
"psr/http-message": "@stable",
"psr/log": "@stable",
"symfony/console": "@stable",
"twig/twig": "^2.5",
"hamlet-framework/type": "@stable",
"hamlet-framework/http": "@stable"
},
"require-dev": {
"cache/void-adapter": "@stable",
"cache/array-adapter": "@stable",
"phpunit/phpunit": "@stable",
"squizlabs/php_codesniffer": "@stable",
"vimeo/psalm": "@stable",
"swoft/swoole-ide-helper": "@stable",
"phake/phake": "@stable",
"php-parallel-lint/php-parallel-lint": "@stable",
"symfony/polyfill-mbstring": "<=1.20.0"
},
"autoload": {
"psr-4": {
"Hamlet\\": "src/Hamlet"
}
},
"autoload-dev": {
"psr-4": {
"Hamlet\\": "tests/Hamlet"
}
}
}