-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.02 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
{
"name": "linio/tortilla",
"description": "A highly opinionated microframework built with speed and simplicity in mind.",
"keywords": ["linio", "api", "framework", "tortilla", "stack", "stackphp", "middleware"],
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": ">=8.1",
"linio/common": "^4.1",
"linio/microlog": "~1.0",
"linio/util": "~4.0",
"monolog/monolog": "^2.3",
"nikic/fast-route": "~1.1",
"pimple/pimple": "~3.0",
"symfony/event-dispatcher": "~6.1.9",
"symfony/http-foundation": "~6.1.9",
"symfony/http-kernel": "~6.2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpspec/prophecy": "^1.16",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Linio\\Tortilla\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\Tortilla\\": "tests/"
}
}
}