-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
50 lines (50 loc) · 1.08 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
{
"name": "shoot/shoot",
"description": "Shoot aims to make providing data to your templates more manageable",
"type": "library",
"keywords": [
"shoot",
"twig",
"templates",
"templating",
"data",
"middleware",
"extension",
"plugin",
"view",
"presentation",
"model",
"presenter"
],
"license": "MIT",
"authors": [
{
"name": "Victor Welling",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit"
},
"require": {
"php": "^7.2 || ^8.0",
"psr/container": "^1.0 || ^2.0.1",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1",
"twig/twig": "^2.12.0 || ^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.16"
},
"autoload": {
"psr-4": {
"Shoot\\Shoot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shoot\\Shoot\\Tests\\": "tests/"
}
}
}