forked from kalimatas/php-liquid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.33 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": "liquid/liquid",
"type": "library",
"description": "Liquid template engine for PHP",
"keywords": [
"liquid",
"template"
],
"homepage": "https://github.com/kalimatas/php-liquid",
"license": "MIT",
"authors": [
{
"name": "Guz Alexander",
"email": "[email protected]",
"homepage": "http://guzalexander.com"
},
{
"name": "Harald Hanek"
},
{
"name": "Mateo Murphy"
},
{
"name": "Alexey Kopytko",
"email": "[email protected]",
"homepage": "https://www.alexeykopytko.com/"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^2.16.4",
"infection/infection": ">=0.17.6",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.2.6"
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Liquid\\": "src/Liquid"
}
},
"autoload-dev": {
"psr-4": {
"Liquid\\": "tests/Liquid"
}
}
}