Skip to content

Commit b7d8188

Browse files
committed
- revisit composer schema
1 parent 4256095 commit b7d8188

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Include your project-specific ignores in this file
22
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
33
*.phar
4+
composer.lock
5+
vendor/
46
.idea/
57
*.iml
68
.DS_Store

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![License]](https://github.com/Labs64/NetLicensingClient-php/blob/master/LICENSE)
2-
31
# [Labs64 NetLicensing] Client (PHP)
42

53
PHP wrapper for Labs64 NetLicensing [RESTful API]

composer.json

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,34 @@
11
{
22
"name": "labs64/netlicensingclient-php",
33
"description": "PHP wrapper for Labs64 NetLicensing RESTful API",
4-
"license": "Apache-2.0",
5-
"homepage": "https://github.com/Labs64/NetLicensingClient-php",
4+
"type": "library",
65
"keywords": [
7-
"NetLicensing", "licensing", "php", "client", "framework", "api", "rest", "restful"
6+
"NetLicensing", "licensing", "license", "client", "API", "REST", "RESTful"
7+
],
8+
"homepage": "https://github.com/Labs64/NetLicensingClient-php",
9+
"license": "Apache-2.0",
10+
"authors": [
11+
{
12+
"name": "Labs64 NetLicensing",
13+
"email": "netlicensing@labs64.com",
14+
"homepage": "https://netlicensing.io"
15+
}
816
],
17+
"support": {
18+
"email": "netlicensing@labs64.com",
19+
"issues": "https://github.com/Labs64/NetLicensingClient-php/issues",
20+
"wiki": "https://www.labs64.de/confluence/display/NLICPUB",
21+
"source": "https://github.com/Labs64/NetLicensingClient-php",
22+
"docs": "https://www.labs64.de/confluence/display/NLICPUB"
23+
},
924
"require": {
1025
"php": ">=5.3.2",
1126
"php-curl-class/php-curl-class": "4.10.0"
1227
},
13-
"repositories": [
14-
{
15-
"type": "git",
16-
"url": "https://github.com/php-curl-class/php-curl-class"
17-
}
18-
],
1928
"autoload": {
2029
"files": [
2130
"netlicensing.php"
2231
]
23-
}
32+
},
33+
"prefer-stable": true
2434
}

0 commit comments

Comments
 (0)