forked from scherzetto/scherzetto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.18 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
{
"name": "scherzetto/scherzetto",
"description": "Scherzetto micro framework",
"type": "project",
"require": {
"php": "^7.1",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"twig/twig": "^2.4",
"guzzlehttp/psr7": "^1.4",
"scherzetto/access": "^1.0",
"scherzetto/db": "^1.0",
"scherzetto/env": "^1.0",
"scherzetto/http": "^1.0",
"scherzetto/routing": "^1.0",
"scherzetto/templating": "^1.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"codacy/coverage": "^1.4",
"phpstan/phpstan": "^0.9.2",
"phpstan/phpstan-phpunit": "^0.9.4",
"friendsofphp/php-cs-fixer": "^2.14",
"scherzetto/test-case": "^1.0",
"sensiolabs/security-checker": "^5.0"
},
"autoload": {
"psr-4": {
"App\\": "./src/App/",
"Tests\\": "./tests/Tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Benjamin Zaslavsky",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}