-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 936 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 936 Bytes
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
{
"name": "martywallace/tempest",
"version": "5.0.2",
"description": "A tiny PHP framework.",
"homepage": "https://github.com/martywallace/tempest",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Marty Wallace",
"email": "marty@martywallace.com",
"homepage": "https://martywallace.com",
"role": "Lead Developer"
}],
"autoload": {
"psr-4" : {
"Tempest\\" : "src/Tempest/"
}
},
"autoload-dev": {
"psr-4": {
"Tempest\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"nikic/fast-route": "1.2.*",
"twig/twig": "2.3.*",
"vlucas/phpdotenv": "^2.4",
"symfony/console": "^3.3",
"symfony/event-dispatcher": "^3.3",
"erusev/parsedown": "^1.6",
"nesbot/carbon": "^1.22",
"doctrine/inflector": "^1.2",
"willdurand/negotiation": "^2.3",
"monolog/monolog": "^1.23",
"doctrine/cache": "^1.7",
"vlucas/valitron": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "6.3"
}
}