-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
69 lines (69 loc) · 1.68 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
{
"name": "spiral/stempler",
"type": "library",
"description": "Stempler, HTML markup processor and template engine framework",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/framework/issues",
"source": "https://github.com/spiral/stempler"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "alexey.gagarin@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"require": {
"ext-json": "*",
"php": ">=8.1",
"myclabs/deep-copy": "^1.9",
"spiral/core": "^3.15"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"mockery/mockery": "^1.5",
"vimeo/psalm": "^5.9"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Spiral\\Stempler\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Tests\\Stempler\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.15.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}