Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit ace5429

Browse files
Add project
1 parent 4bcfb42 commit ace5429

24 files changed

+4371
-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

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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# PHP SDK for Nginx Unit
2+
3+
## Installation
4+
5+
```shell
6+
composer install
7+
```
8+

composer.json

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

0 commit comments

Comments
 (0)