Skip to content

Commit 6ec7aa5

Browse files
Merge branch 'release/v0.8.0'
2 parents 912ff4f + 60ce92b commit 6ec7aa5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1047
-798
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ A clear and concise description of what the bug is.
1313
**To Reproduce**
1414
Steps to reproduce the behavior:
1515
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
16+
2. Modify or use that and '....'
1817
4. See error
1918

2019
**Expected behavior**
@@ -28,11 +27,5 @@ If applicable, add screenshots to help explain your problem.
2827
- Browser [e.g. chrome, safari]
2928
- Version [e.g. 22]
3029

31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
36-
3730
**Additional context**
3831
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,8 @@ assignees: ''
77

88
---
99

10-
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
1310
**Describe the solution you'd like**
1411
A clear and concise description of what you want to happen.
1512

1613
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
18-
19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
14+
A clear and concise description of any alternative solutions or features you've considered.

.github/SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ We use [SemVer](https://semver.org/) for versioning. For the versions available,
88

99
| Version | Nginx Unit Capability | Supported |
1010
|---------|:----------------------|--------------------|
11-
| 0.7.x | 1.32.1 | :white_check_mark: |
12-
| < 0.6.x | - | :x: |
11+
| 0.8.x | 1.32.1 | :white_check_mark: |
12+
| < 0.7.x | - | :x: |
1313

1414
## Vulnerability Report
1515

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## v0.8.0 - [2024/09/10]
4+
5+
- Updated application classes
6+
- Removed doc folder
7+
- Updated tests
8+
39
## v0.7.0 - [2024/04/07]
410

511
- Now SDK support connection via only address.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ server management into your projects
3030

3131
| Version | Nginx Unit Capability | Supported |
3232
|---------|:----------------------|--------------------|
33-
| 0.7.x | <= 1.32.1 | :white_check_mark: |
34-
| < 0.6.x | - | :x: |
33+
| 0.8.x | <= 1.32.1 | :white_check_mark: |
34+
| < 0.7.x | - | :x: |
3535

3636
### Quick start
3737

composer.json

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "pavlusha311245/unit-php-sdk",
3-
"version": "0.7.0",
2+
"name": "pavlusha/unit-php-sdk",
3+
"version": "0.8.0",
44
"type": "sdk",
55
"description": "This project allows developers to interact with the Nginx Unit web server through PHP classes",
66
"license": "Apache-2.0",
@@ -29,15 +29,17 @@
2929
},
3030
"require": {
3131
"php": "^8.3",
32-
"friendsofphp/php-cs-fixer": "^3.46",
32+
"friendsofphp/php-cs-fixer": "^3.54",
3333
"guzzlehttp/guzzle": "^7.8.1",
34-
"ext-curl": "*",
35-
"nesbot/carbon": "^2.72"
34+
"nesbot/carbon": "^2.72",
35+
"doctrine/inflector": "^2.0",
36+
"ext-curl": "*"
3637
},
3738
"require-dev": {
38-
"pestphp/pest": "^2.26",
39+
"pestphp/pest": "^2.34",
3940
"phpstan/phpstan": "^1.10",
40-
"mockery/mockery": "^1.6"
41+
"mockery/mockery": "^1.6",
42+
"fakerphp/faker": "^1.23"
4143
},
4244
"autoload": {
4345
"psr-4": {
@@ -57,6 +59,6 @@
5759
"pestphp/pest-plugin": true
5860
}
5961
},
60-
"minimum-stability": "beta",
62+
"minimum-stability": "stable",
6163
"prefer-stable": true
6264
}

docs/.gitbook/assets/5R4A3560.jpeg

-281 KB
Binary file not shown.

docs/.gitbook/assets/5R4A3561.jpeg

-115 KB
Binary file not shown.
-374 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/.gitbook/assets/file.excalidraw.svg

-16
This file was deleted.

docs/README.md

-45
This file was deleted.

docs/SUMMARY.md

-20
This file was deleted.

docs/authors.md

-3
This file was deleted.

docs/basic-usage/certificates.md

-25
This file was deleted.

docs/basic-usage/config/README.md

-2
This file was deleted.

docs/basic-usage/config/applications.md

-63
This file was deleted.

docs/basic-usage/config/listeners.md

-31
This file was deleted.

docs/basic-usage/config/statistics.md

-32
This file was deleted.

docs/basic-usage/unit.md

-28
This file was deleted.

0 commit comments

Comments
 (0)