Skip to content

Commit d1147a7

Browse files
Merge branch 'release/0.1.0'
2 parents 4bcfb42 + cf37f5c commit d1147a7

25 files changed

+4462
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
vendor

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# CHANGELOG
2+
3+
## v0.1.0 - [2023/07/13] (Experimental version)
4+
5+
- Created project

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright [2023] [Pavel Zavadski]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# PHP SDK for Nginx Unit
2+
3+
_THIS PROJECT IN DEVELOPMENT. DON'T USE IT IN PRODUCTION_
4+
5+
## Quick start
6+
```shell
7+
composer require pavlusha311245/unit-php-sdk
8+
```
9+
10+
## Changelog
11+
More information about changes you can see [here](CHANGELOG.md)
12+
13+
## Contribution
14+
More info about contribution you can read [here](https://docs.github.com/en/get-started/quickstart/contributing-to-projects)

composer.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "pavlusha311245/unit-php-sdk",
3+
"type": "library",
4+
"description": "This project allows developers to interact with the Nginx Unit web server through php classes",
5+
"license": "Apache License 2.0",
6+
"homepage": "https://github.com/Pavlusha311245/nginx-unit-php-sdk",
7+
"keywords": [
8+
"unit",
9+
"nginx unit",
10+
"sdk"
11+
],
12+
"autoload": {
13+
"psr-4": {
14+
"Pavlusha311245\\UnitPhpSdk\\": "src/"
15+
}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"Tests\\": "tests/"
20+
}
21+
},
22+
"authors": [
23+
{
24+
"name": "Pavel Zavadski",
25+
"email": "[email protected]"
26+
}
27+
],
28+
"minimum-stability": "stable",
29+
"require": {
30+
"php": ">=8.2",
31+
"ext-curl": "*"
32+
},
33+
"require-dev": {
34+
"pestphp/pest": "^2.8"
35+
},
36+
"config": {
37+
"allow-plugins": {
38+
"pestphp/pest-plugin": true
39+
}
40+
},
41+
"scripts": {
42+
"test": "./vendor/bin/pest"
43+
}
44+
}

0 commit comments

Comments
 (0)