Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: FTL-18367 add packages for PHP #352

Merged
merged 4 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ tmp

# dependencies
node_modules
vendor

# IDEs and editors
/.idea
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ The Affinidi TDK offers the following modules and support to programming languag
|[common](packages/common/) | 🟢 | 🟢 | 🔴 |
|**Packages** | | | |
|credential-issuance-client | [🟢 Link](clients/typescript/credential-issuance-client/) | [🟢 Link](clients/python/credential_issuance_client/) | [🟡 Link](clients/dart/credential_issuance_client/) |
|credential-verification-client | [🟢 Link](clients/typescript/credential-verification-client/) | [🟢 Link](clients/python/credential_verification_client/) | [🟡 Link](clients/dart/credential_verification_client/) |
|credential-verification-client | [🟢 Link](clients/typescript/credential-verification-client/) | [🟡 Link](clients/python/credential_verification_client/) | [🟡 Link](clients/dart/credential_verification_client/) |
|iam-client | [🟢 Link](clients/typescript/iam-client/) | [🟢 Link](clients/python/iam_client/) | [🟡 Link](clients/dart/iam_client/) |
|iota-client | [🟢 Link](clients/typescript/iota-client/) | [🟢 Link](clients/python/iota_client/) | [🟡 Link](clients/dart/iota_client/) |
|login-configuration-client | [🟢 Link](clients/typescript/login-configuration-client/) | [🟢 Link](clients/python/login_configuration_client/) | [🟡 Link](clients/dart/login_configuration_client/) |
|login-configuration-client | [🟢 Link](clients/typescript/login-configuration-client/) | [🟡 Link](clients/python/login_configuration_client/) | [🟡 Link](clients/dart/login_configuration_client/) |
|wallets-client | [🟢 Link](clients/typescript/wallets-client/) | [🟢 Link](clients/python/wallets_client/) | [🟡 Link](clients/dart/wallets_client/) |
|**Libraries** | | | |
|[iota-browser](libs/iota-browser/) | 🟢 | 🔴 | 🔴 |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions packages/php/auth-provider/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "affinidi-tdk/auth-provider",
"description": "Internal module for managing access tokens",
"type": "library",
"require": {
"guzzlehttp/guzzle": "^7.0",
"firebase/php-jwt": "^6.0",
"ramsey/uuid": "^4.0"
},
"autoload": {
"psr-4": {
"AuthProvider\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading
Loading