File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
HTTP Server Handler
2
2
===================
3
3
4
- Provides the ` RequestHandlerInterface ` of [ PSR-15] [ psr-15 ] . Please refer to the
5
- proposal for a description.
4
+ Provides the ` RequestHandlerInterface ` of [ PSR-15] [ psr-15 ] .
6
5
7
- [ psr-15 ] : https://github.com/php-fig/fig-standards/tree/master/proposed/ http-handlers
6
+ [ psr-15 ] : https://github.com/php-fig/fig-standards/tree/master/accepted/PSR-15- http-request- handlers.md
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " http-interop /http-server-handler" ,
2
+ "name" : " psr /http-server-handler" ,
3
3
"description" : " Common interface for HTTP server-side request handler" ,
4
4
"keywords" : [
5
5
" psr" ,
6
6
" psr-7" ,
7
7
" psr-15" ,
8
+ " http-interop" ,
8
9
" http" ,
9
10
" server" ,
10
11
" handler" ,
22
23
"php" : " >=7.0" ,
23
24
"psr/http-message" : " ^1.0"
24
25
},
25
- "conflict" : {
26
- "http-interop/http-middleware" : " >=0.5"
27
- },
28
26
"autoload" : {
29
27
"psr-4" : {
30
- "Interop \\ Http\\ Server\\ " : " src/"
28
+ "Psr \\ Http\\ Server\\ " : " src/"
31
29
}
32
30
},
33
31
"extra" : {
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Interop \Http \Server ;
3
+ namespace Psr \Http \Server ;
4
4
5
5
use Psr \Http \Message \ResponseInterface ;
6
6
use Psr \Http \Message \ServerRequestInterface ;
You can’t perform that action at this time.
0 commit comments