-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.41 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.41 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
{
"name": "lthn/api",
"description": "REST API module — Laravel API layer + standalone Go binary",
"keywords": ["api", "rest", "laravel", "openapi"],
"license": "EUPL-1.2",
"require": {
"dedoc/scramble": "^0.13",
"php": "^8.2",
"laravel/passport": "^12.0",
"lthn/php": "*",
"lthn/php-tenant": "*",
"symfony/yaml": "^7.0"
},
"repositories": [
{
"type": "path",
"url": "../php",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "../php-tenant",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"Core\\Api\\": "php/src/Api/",
"Core\\Tenant\\": "../php-tenant/",
"Core\\Front\\Api\\": "php/src/Front/Api/",
"Core\\Website\\Api\\": "php/src/Website/Api/"
}
},
"autoload-dev": {
"psr-4": {
"Core\\Api\\Tests\\": "php/tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Core\\Front\\Api\\Boot"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"replace": {
"core/php-api": "self.version",
"lthn/php-api": "self.version"
}
}