This repository was archived by the owner on Dec 9, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.47 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.47 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "apitte/core",
"description": "Core API library in Apitte stack",
"keywords": [
"api",
"apitte",
"http",
"rest",
"nette",
"annotation"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/apitte/core",
"authors": [
{
"name": "Milan Felix Šulc",
"homepage": "https://f3l1x.io"
}
],
"require": {
"php": ">=7.3",
"ext-json": "*",
"contributte/psr7-http-message": "~0.7.0",
"doctrine/annotations": "^1.13",
"koriym/attributes": "^1.0.2",
"nette/utils": "^3.0.3"
},
"require-dev": {
"mockery/mockery": "^1.1.0",
"nette/di": "^3.0.0",
"nettrine/annotations": "^0.7.0",
"ninjify/nunjuck": "^0.4",
"ninjify/qa": "^0.12",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-deprecation-rules": "^0.12",
"phpstan/phpstan-nette": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"psr/log": "^1.1",
"symfony/validator": "^4.1.1|^5.0.0"
},
"conflict": {
"nette/di": "<=3.0.0-RC"
},
"provide": {
"psr/http-message-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Apitte\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/fixtures",
"Tests\\Toolkit\\": "tests/toolkit"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}