generated from Potter/Template
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 44efed4bcb | |||
| ada82580a2 | |||
| 8200ee5d71 | |||
| 2b41e3164e | |||
| 3ee64c82d1 |
@@ -1,3 +1,3 @@
|
||||
# Uri
|
||||
|
||||
Potter Framework Uri Interface
|
||||
Potter Framework Uri Implementation
|
||||
+2
-1
@@ -1,9 +1,10 @@
|
||||
{
|
||||
"name": "potter/uri",
|
||||
"description": "Potter Framework Uri Template",
|
||||
"description": "Potter Framework Uri Implementation",
|
||||
"type": "library",
|
||||
"require": {
|
||||
"php": "^8.5",
|
||||
"guzzlehttp/psr7": "^2.11",
|
||||
"psr/http-message": "^2.0",
|
||||
"potter/stringable": "^0.0.1"
|
||||
},
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Potter\Uri;
|
||||
|
||||
use \GuzzleHttp\Psr7\Uri as BaseUri;
|
||||
|
||||
abstract class AbstractUri extends BaseUri implements UriInterface
|
||||
{ }
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Potter\Uri;
|
||||
|
||||
class Uri extends AbstractUri
|
||||
{ }
|
||||
Reference in New Issue
Block a user