Skip to content

Commit 2c19d14

Browse files
committed
Add support URLs for Packagist with -php suffix
1 parent 98f6ad5 commit 2c19d14

File tree

1 file changed

+65
-61
lines changed

1 file changed

+65
-61
lines changed

composer.json

Lines changed: 65 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,67 @@
11
{
2-
"name": "code-wheel/mcp-http-security",
3-
"description": "Secure HTTP transport wrapper for MCP servers with API key auth, IP/Origin allowlisting, and rate limiting",
4-
"type": "library",
5-
"license": "MIT",
6-
"keywords": [
7-
"mcp",
8-
"model-context-protocol",
9-
"security",
10-
"api-key",
11-
"authentication",
12-
"middleware"
13-
],
14-
"authors": [
15-
{
16-
"name": "CodeWheel",
17-
"homepage": "https://github.com/code-wheel"
18-
}
19-
],
20-
"require": {
21-
"php": ">=8.1",
22-
"psr/http-server-middleware": "^1.0",
23-
"psr/http-message": "^1.0 || ^2.0",
24-
"psr/clock": "^1.0",
25-
"psr/log": "^1.0 || ^2.0 || ^3.0"
26-
},
27-
"require-dev": {
28-
"phpunit/phpunit": "^10.0 || ^11.0",
29-
"phpstan/phpstan": "^1.10",
30-
"psr/http-factory": "^1.0",
31-
"infection/infection": "^0.27 || ^0.28 || ^0.29",
32-
"phpbench/phpbench": "^1.2"
33-
},
34-
"autoload": {
35-
"psr-4": {
36-
"CodeWheel\\McpSecurity\\": "src/"
37-
}
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"CodeWheel\\McpSecurity\\Tests\\": "tests/",
42-
"CodeWheel\\McpSecurity\\Benchmarks\\": "benchmarks/"
43-
}
44-
},
45-
"scripts": {
46-
"test": "phpunit",
47-
"test:coverage": "phpunit --coverage-html coverage-html --coverage-clover coverage.xml",
48-
"analyse": "phpstan analyse",
49-
"infection": "infection --threads=4 --min-msi=80 --min-covered-msi=90",
50-
"benchmark": "phpbench run --report=default",
51-
"ci": [
52-
"@analyse",
53-
"@test"
54-
]
55-
},
56-
"config": {
57-
"sort-packages": true,
58-
"allow-plugins": {
59-
"infection/extension-installer": true
60-
}
61-
},
62-
"minimum-stability": "stable"
2+
"name": "code-wheel/mcp-http-security",
3+
"description": "Secure HTTP transport wrapper for MCP servers with API key auth, IP/Origin allowlisting, and rate limiting",
4+
"type": "library",
5+
"license": "MIT",
6+
"keywords": [
7+
"mcp",
8+
"model-context-protocol",
9+
"security",
10+
"api-key",
11+
"authentication",
12+
"middleware"
13+
],
14+
"authors": [
15+
{
16+
"name": "CodeWheel",
17+
"homepage": "https://github.com/code-wheel"
18+
}
19+
],
20+
"require": {
21+
"php": ">=8.1",
22+
"psr/http-server-middleware": "^1.0",
23+
"psr/http-message": "^1.0 || ^2.0",
24+
"psr/clock": "^1.0",
25+
"psr/log": "^1.0 || ^2.0 || ^3.0"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^10.0 || ^11.0",
29+
"phpstan/phpstan": "^1.10",
30+
"psr/http-factory": "^1.0",
31+
"infection/infection": "^0.27 || ^0.28 || ^0.29",
32+
"phpbench/phpbench": "^1.2"
33+
},
34+
"autoload": {
35+
"psr-4": {
36+
"CodeWheel\\McpSecurity\\": "src/"
37+
}
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"CodeWheel\\McpSecurity\\Tests\\": "tests/",
42+
"CodeWheel\\McpSecurity\\Benchmarks\\": "benchmarks/"
43+
}
44+
},
45+
"scripts": {
46+
"test": "phpunit",
47+
"test:coverage": "phpunit --coverage-html coverage-html --coverage-clover coverage.xml",
48+
"analyse": "phpstan analyse",
49+
"infection": "infection --threads=4 --min-msi=80 --min-covered-msi=90",
50+
"benchmark": "phpbench run --report=default",
51+
"ci": [
52+
"@analyse",
53+
"@test"
54+
]
55+
},
56+
"config": {
57+
"sort-packages": true,
58+
"allow-plugins": {
59+
"infection/extension-installer": true
60+
}
61+
},
62+
"minimum-stability": "stable",
63+
"support": {
64+
"issues": "https://github.com/code-wheel/mcp-http-security-php/issues",
65+
"source": "https://github.com/code-wheel/mcp-http-security-php/tree/master"
66+
}
6367
}

0 commit comments

Comments
 (0)