Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6988e5b
Add Middleware handlers to StreamableHttpTransport
Dec 29, 2025
af2b28b
Merge branch 'main' of https://github.com/modelcontextprotocol/php-sd…
Jan 8, 2026
6ac6671
OAuth Implementation based on middleware
sveneld Jan 12, 2026
79a9916
OAuth Implementation based on middleware
Jan 28, 2026
446569a
Add Middleware handlers to StreamableHttpTransport
Dec 29, 2025
81c94bc
OAuth Implementation based on middleware
sveneld Jan 12, 2026
eb2a422
OAuth Implementation based on middleware
Jan 28, 2026
c61a756
Address PR review feedback for OAuth middleware
sveneld Feb 15, 2026
0add43d
Apply php-cs-fixer to satisfy QA
sveneld Feb 15, 2026
a2dcce7
Use Mcp exception classes in OAuth middleware
sveneld Feb 21, 2026
ba5ef52
Refactor OAuth HTTP stack and add Microsoft example policies
sveneld Feb 22, 2026
d7650fb
Fix QA PHPStan findings in OAuth examples and auth middleware
sveneld Feb 22, 2026
74b1654
Require OIDC discovery in JWKS provider and refine OAuth proxy behavior
sveneld Feb 22, 2026
cbdb546
Remove local development docker artifacts from VCS
sveneld Feb 22, 2026
fca16ad
Revert .gitignore changes for local docker files
sveneld Feb 22, 2026
1096f8e
Fix body retrieval in OAuthRequestMetaMiddleware for proper string co…
sveneld Feb 26, 2026
5ce93e5
Merge branch 'oauth_middleware' of https://github.com/sveneld/php-sdk…
Mar 2, 2026
2943a06
Address OAuth PR review feedback and align example configs
sveneld Mar 2, 2026
4f555f0
Fix QA style issues and add authorization docs
sveneld Mar 2, 2026
637289f
Fix PHPStan typing issues in OAuth middleware
sveneld Mar 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"psr/clock": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
Expand All @@ -35,6 +36,8 @@
"symfony/uid": "^5.4 || ^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"ext-openssl": "*",
"firebase/php-jwt": "^6.10 || ^7.0",
"laminas/laminas-httphandlerrunner": "^2.12",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
Expand All @@ -46,6 +49,7 @@
"psr/simple-cache": "^2.0 || ^3.0",
"symfony/cache": "^5.4 || ^6.4 || ^7.3 || ^8.0",
"symfony/console": "^5.4 || ^6.4 || ^7.3 || ^8.0",
"symfony/http-client": "^5.4 || ^6.4 || ^7.3 || ^8.0",
"symfony/process": "^5.4 || ^6.4 || ^7.3 || ^8.0"
},
"autoload": {
Expand All @@ -67,6 +71,8 @@
"Mcp\\Example\\Server\\DiscoveryUserProfile\\": "examples/server/discovery-userprofile/",
"Mcp\\Example\\Server\\EnvVariables\\": "examples/server/env-variables/",
"Mcp\\Example\\Server\\ExplicitRegistration\\": "examples/server/explicit-registration/",
"Mcp\\Example\\Server\\OAuthKeycloak\\": "examples/server/oauth-keycloak/",
"Mcp\\Example\\Server\\OAuthMicrosoft\\": "examples/server/oauth-microsoft/",
"Mcp\\Example\\Server\\SchemaShowcase\\": "examples/server/schema-showcase/",
"Mcp\\Tests\\": "tests/"
}
Expand Down
Loading