-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 919 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 919 Bytes
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
{
"name": "xultech/devpayr-php-sdk",
"description": "Official DevPayr PHP SDK — License enforcement, API key management, and injectable protection for SaaS & software.",
"keywords": [
"devpayr",
"php sdk",
"license manager",
"api client",
"saas security",
"software licensing"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "XulTech",
"email": "support@devpayr.com",
"homepage": "https://devpayr.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.0 || ^8.0",
"symfony/filesystem": "^7.3",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"DevPayr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevPayr\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}