Skip to content

Commit 1f79b72

Browse files
authored
Merge pull request #47 from mrsombre/tech-dbarsukov-maintenance
Update composer.json, removed composer.lock
2 parents c7939aa + a296948 commit 1f79b72

File tree

4 files changed

+18
-1433
lines changed

4 files changed

+18
-1433
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
/php/tests/node_modules
2-
/vendor
1+
2+
# vendor
3+
/composer.lock
4+
/vendor/
5+
6+
# tests
37
/phpunit.xml
8+
/php/tests/node_modules/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PHP object-oriented library for Plesk XML-RPC API.
88

99
[Composer](https://getcomposer.org/) is a preferable way to install the library:
1010

11-
`composer require plesk/api-php-lib:@dev`
11+
`composer require plesk/api-php-lib`
1212

1313
## Usage Examples
1414

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
{
22
"name": "plesk/api-php-lib",
3+
"type": "library",
34
"description": "PHP object-oriented library for Plesk XML-RPC API",
45
"license": "Apache-2.0",
56
"authors": [
67
{
78
"name": "Alexei Yuzhakov",
89
"email": "sibprogrammer@gmail.com"
10+
},
11+
{
12+
"name": "Plesk",
13+
"email": "plesk-dev-leads@plesk.com"
914
}
1015
],
11-
"minimum-stability": "dev",
1216
"require": {
13-
"php": "^5.6|^7.1|^7.0"
17+
"php": "^5.6 | ^7.0",
18+
"ext-curl": "*",
19+
"ext-xml": "*"
1420
},
1521
"require-dev": {
16-
"phpunit/phpunit": "^7"
22+
"phpunit/phpunit": "^7.0"
1723
},
1824
"config": {
1925
"process-timeout": 0
@@ -31,7 +37,7 @@
3137
},
3238
"extra": {
3339
"branch-alias": {
34-
"dev-master": "0.1.x-dev"
40+
"dev-master": "1.0.x-dev"
3541
}
3642
}
3743
}

0 commit comments

Comments
 (0)