-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
139 lines (139 loc) · 4.44 KB
/
composer.json
File metadata and controls
139 lines (139 loc) · 4.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "api-platform/laravel",
"description": "API Platform support for Laravel",
"keywords": [
"Laravel",
"REST",
"GraphQL",
"API",
"JSON-LD",
"Hydra",
"JSONAPI",
"OpenAPI",
"HAL",
"Swagger"
],
"homepage": "https://api-platform.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]",
"homepage": "https://dunglas.fr"
},
{
"name": "API Platform Community",
"homepage": "https://api-platform.com/community/contributors"
}
],
"require": {
"php": ">=8.2",
"api-platform/documentation": "^4.2",
"api-platform/hal": "^4.2.0-beta.1",
"api-platform/hydra": "^4.2",
"api-platform/json-api": "^4.2",
"api-platform/json-schema": "^4.2",
"api-platform/jsonld": "^4.2",
"api-platform/metadata": "^4.2",
"api-platform/mcp": "dev-main",
"api-platform/openapi": "^4.2",
"api-platform/serializer": "^4.2.4",
"api-platform/state": "^4.2.4",
"illuminate/config": "^11.0 || ^12.0",
"illuminate/container": "^11.0 || ^12.0",
"illuminate/contracts": "^11.0 || ^12.0",
"illuminate/database": "^11.0 || ^12.0",
"illuminate/http": "^11.0 || ^12.0",
"illuminate/pagination": "^11.0 || ^12.0",
"illuminate/routing": "^11.0 || ^12.0",
"illuminate/support": "^11.0 || ^12.0",
"laravel/framework": "^11.0 || ^12.0",
"symfony/deprecation-contracts": "^3.6",
"symfony/type-info": "^7.4 || ^8.0",
"symfony/web-link": "^6.4 || ^7.4 || ^8.0",
"willdurand/negotiation": "^3.1"
},
"require-dev": {
"api-platform/graphql": "^4.1",
"api-platform/http-cache": "^4.1",
"doctrine/dbal": "^4.0",
"larastan/larastan": "^2.0 || ^3.0",
"laravel/sanctum": "^4.0",
"mcp/sdk": "^0.4.0",
"orchestra/testbench": "^10.1",
"phpdocumentor/type-resolver": "^1.7",
"phpstan/phpdoc-parser": "^1.29 || ^2.0",
"phpunit/phpunit": "^12.2",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/mcp-bundle": "dev-main",
"symfony/object-mapper": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"ApiPlatform\\Laravel\\": ""
},
"exclude-from-classmap": [
"/Tests/",
"/workbench/"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"suggest": {
"api-platform/graphql": "Enable GraphQl support.",
"api-platform/http-cache": "Enable HTTP Cache support.",
"phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc."
},
"extra": {
"laravel": {
"providers": [
"ApiPlatform\\Laravel\\ApiPlatformProvider",
"ApiPlatform\\Laravel\\ApiPlatformDeferredProvider",
"ApiPlatform\\Laravel\\Eloquent\\ApiPlatformEventProvider"
]
},
"branch-alias": {
"dev-main": "4.3.x-dev",
"dev-4.2": "4.2.x-dev",
"dev-3.4": "3.4.x-dev",
"dev-4.1": "4.1.x-dev"
},
"symfony": {
"require": "^6.4 || ^7.4 || ^8.0"
},
"thanks": {
"name": "api-platform/api-platform",
"url": "https://github.com/api-platform/api-platform"
}
},
"autoload-dev": {
"psr-4": {
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"build": "@php vendor/bin/testbench workbench:build --ansi",
"test": "@php vendor/bin/testbench package:test",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
],
"lint": [
"@php vendor/bin/phpstan analyse --verbose --ansi"
]
},
"minimum-stability": "dev"
}