forked from tomaj/nette-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.12 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
{
"name": "tomaj/nette-api",
"description": "Nette api",
"license": "MIT",
"keywords": ["nette", "api"],
"authors": [
{
"name": "Tomas Majer",
"email": "tomasmajer@gmail.com",
"homepage": "http://www.tomaj.sk/"
}
],
"require": {
"php": ">= 7.1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-session": "*",
"ext-filter": "*",
"nette/application": "^3.0",
"nette/http": "^3.0",
"tracy/tracy": "^2.6",
"league/fractal": "~0.17",
"tomaj/nette-bootstrap-form": "^2.0",
"justinrainbow/json-schema": "^5.2"
},
"require-dev": {
"nette/di": "^3.0",
"latte/latte": "^2.4 | ^3.0",
"phpunit/phpunit": ">7.0 <10.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"Tomaj\\NetteApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tomaj\\NetteApi\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}