-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
71 lines (67 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "contributte/apitte-skeleton",
"description": "🎁 API / REST API / JSON API / PSR-7 / Middlewares project skeleton based on Nette Framework (@nette), Apitte (@apitte), Doctrine (@nettrine) and Contributte (@contributte) libraries by @f3l1x.",
"keywords": [
"php",
"nette",
"contributte",
"api",
"apitte",
"sandbox",
"project",
"skeleton"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.2",
"contributte/bootstrap": "^0.6.0",
"contributte/console": "^0.10.0",
"contributte/di": "^0.5.6",
"contributte/http": "^0.4.0",
"contributte/monolog": "^0.5.0",
"contributte/neonizer": "^0.6.0",
"contributte/security": "^0.4.0",
"contributte/tracy": "^0.6.0",
"contributte/utils": "^0.6.0",
"contributte/apitte": "^0.12.0",
"nettrine/annotations": "^0.7.0",
"nettrine/orm": "^0.8.0",
"nettrine/dbal": "^0.8.0",
"nettrine/cache": "^0.3.0",
"nettrine/migrations": "^0.9.1",
"nettrine/fixtures": "^0.7.2",
"symfony/serializer": "^7.0.3",
"symfony/validator": "^7.0.2",
"symfony/property-info": "^7.0.6",
"symfony/cache": "^7.0.0"
},
"require-dev": {
"contributte/qa": "^0.4",
"contributte/dev": "^0.4",
"contributte/tester": "^0.3",
"contributte/phpstan": "^0.1",
"mockery/mockery": "^1.5.1",
"phpstan/phpstan-doctrine": "^1.3.40",
"nelmio/alice": "^3.13.0"
},
"autoload": {
"psr-4": {
"App\\": "app",
"Database\\": "db"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}