We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3294d commit 8da5e25Copy full SHA for 8da5e25
composer.json
@@ -0,0 +1,24 @@
1
+{
2
+ "name": "api-clients/contracts",
3
+ "description": "PHP API Clients wide contracts",
4
+ "license": "MIT",
5
+ "authors": [
6
+ {
7
+ "name": "Cees-Jan Kiewiet",
8
+ "email": "ceesjank@gmail.com"
9
+ }
10
+ ],
11
+ "require": {
12
+ "php": "^8.2"
13
+ },
14
+ "autoload": {
15
+ "psr-4": {
16
+ "ApiClients\\Contracts\\": "src/"
17
18
19
+ "config": {
20
+ "platform": {
21
+ "php": "8.2.13"
22
23
24
+}
src/HTTP/Headers/AuthenticationInterface.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace ApiClients\Contracts\HTTP\Headers;
+interface AuthenticationInterface
+ public function authHeader() : string;
0 commit comments