-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
141 lines (141 loc) · 4.64 KB
/
composer.json
File metadata and controls
141 lines (141 loc) · 4.64 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
140
141
{
"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": "kevin@dunglas.fr",
"homepage": "https://dunglas.fr"
},
{
"name": "API Platform Community",
"homepage": "https://api-platform.com/community/contributors"
}
],
"require": {
"php": ">=8.2",
"api-platform/documentation": "^4.3",
"api-platform/hal": "^4.3",
"api-platform/hydra": "^4.3",
"api-platform/json-api": "^4.3",
"api-platform/json-schema": "^4.3",
"api-platform/jsonld": "^4.3",
"api-platform/metadata": "^4.3",
"api-platform/openapi": "^4.3",
"api-platform/serializer": "^4.3",
"api-platform/state": "^4.3",
"illuminate/config": "^11.0 || ^12.0 || ^13.0",
"illuminate/container": "^11.0 || ^12.0 || ^13.0",
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
"illuminate/database": "^11.0 || ^12.0 || ^13.0",
"illuminate/http": "^11.0 || ^12.0 || ^13.0",
"illuminate/pagination": "^11.0 || ^12.0 || ^13.0",
"illuminate/routing": "^11.0 || ^12.0 || ^13.0",
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
"laravel/framework": "^11.0 || ^12.0 || ^13.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.3",
"api-platform/http-cache": "^4.3",
"api-platform/mcp": "^4.3",
"doctrine/dbal": "^4.0",
"larastan/larastan": "^2.0 || ^3.0",
"laravel/sanctum": "^4.0",
"mcp/sdk": "^0.4.0",
"orchestra/testbench": "^10.1 || ^11.0",
"phpdocumentor/type-resolver": "^1.7",
"phpstan/phpdoc-parser": "^1.29 || ^2.0",
"phpunit/phpunit": "^11.5 || ^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.",
"api-platform/mcp": "Enable MCP (Model Context Protocol) support for AI agents.",
"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.4.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",
"prefer-stable": true
}