-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.76 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "licensechain/sdk",
"description": "Official LicenseChain PHP SDK for license management and validation",
"type": "library",
"license": "Elastic-2.0",
"authors": [
{
"name": "LicenseChain Team",
"email": "support@licensechain.app"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.0",
"firebase/php-jwt": "^7.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"php-cs-fixer/shim": "^3.0"
},
"autoload": {
"psr-4": {
"LicenseChain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LicenseChain\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse",
"quality": [
"@cs-check",
"@stan",
"@test"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"keywords": [
"license",
"validation",
"api",
"sdk",
"php",
"licensechain",
"license-management",
"webhook",
"authentication"
],
"homepage": "https://docs.licensechain.app/sdks/php",
"support": {
"email": "support@licensechain.app",
"issues": "https://github.com/LicenseChain/LicenseChain-PHP-SDK/issues",
"source": "https://github.com/LicenseChain/LicenseChain-PHP-SDK"
},
"minimum-stability": "stable",
"prefer-stable": true
}