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

update php-curl-class library #6

Merged
merged 3 commits into from
Oct 10, 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
6 changes: 4 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,7 @@ jobs:
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md

# - name: Run test suite
# run: composer run-script test
- name: Run test suite
run: |
cd ./demo
php ./NetLicensingDemo.php
96 changes: 56 additions & 40 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,58 @@
{
"name": "labs64/netlicensingclient-php",
"description": "PHP wrapper for Labs64 NetLicensing RESTful API",
"type": "library",
"keywords": [
"NetLicensing", "licensing", "license", "software license", "licensing model", "license types", "license management", "licensing as a service", "software activation", "subscription", "floating", "pay-per-use", "client", "RESTful", "API", "REST"
],
"homepage": "https://netlicensing.io",
"license": "Apache-2.0",
"authors": [
{
"name": "Labs64 NetLicensing",
"email": "netlicensing@labs64.com",
"homepage": "https://netlicensing.io"
}
],
"support": {
"email": "netlicensing@labs64.com",
"issues": "https://github.com/Labs64/NetLicensingClient-php/issues",
"wiki": "https://netlicensing.io/wiki/",
"source": "https://github.com/Labs64/NetLicensingClient-php",
"docs": "https://netlicensing.io/wiki/"
},
"require": {
"php": ">=7.0",
"php-curl-class/php-curl-class": "^8.9.0",
"fr3d/xmldsig": "^3.0",
"ext-mbstring": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.5.14",
"fzaninotto/faker": "^v1.9.2",
"wp-cli/php-cli-tools": "^v0.11.11"
},
"autoload": {
"files": [
"netlicensing.php"
]
},
"prefer-stable": true
"name": "labs64/netlicensingclient-php",
"description": "PHP wrapper for Labs64 NetLicensing RESTful API",
"type": "library",
"keywords": [
"NetLicensing",
"licensing",
"license",
"software license",
"licensing model",
"license types",
"license management",
"licensing as a service",
"software activation",
"subscription",
"floating",
"pay-per-use",
"client",
"RESTful",
"API",
"REST"
],
"homepage": "https://netlicensing.io",
"license": "Apache-2.0",
"authors": [
{
"name": "Labs64 NetLicensing",
"email": "netlicensing@labs64.com",
"homepage": "https://netlicensing.io"
}
],
"support": {
"email": "netlicensing@labs64.com",
"issues": "https://github.com/Labs64/NetLicensingClient-php/issues",
"wiki": "https://netlicensing.io/wiki/",
"source": "https://github.com/Labs64/NetLicensingClient-php",
"docs": "https://netlicensing.io/wiki/"
},
"require": {
"php": ">=7.4",
"php-curl-class/php-curl-class": "^11.0.0",
"fr3d/xmldsig": "^3.0",
"ext-mbstring": "*",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.5.14",
"fzaninotto/faker": "^v1.9.2",
"wp-cli/php-cli-tools": "^v0.11.11"
},
"autoload": {
"files": [
"netlicensing.php"
]
},
"prefer-stable": true
}
Loading
Loading