-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.45 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "trabdlkarim/lararestler",
"type": "library",
"description": "A package for having Restler API in your Laravel application.",
"keywords": [
"laravel",
"package",
"restler",
"rest-api",
"restful-api",
"api"
],
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Toure A. Karim",
"email": "mail@trabdlkarim.me",
"homepage": "https://trabdlkarim.me/"
}
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^12.14",
"illuminate/http": "^12.14",
"illuminate/support": "^12.14",
"illuminate/validation": "^12.14",
"restler/framework": "^5.0"
},
"autoload": {
"psr-4": {
"Mirak\\Lararestler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mirak\\Lararestler\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mirak\\Lararestler\\ServiceProvider"
]
}
},
"scripts": {
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"laravel/pint": "^1.22",
"phpstan/phpstan": "^2.1"
}
}