Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
niqingyang committed Sep 8, 2022
0 parents commit 61895af
Show file tree
Hide file tree
Showing 8 changed files with 1,702 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
vendor
34 changes: 34 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "wellkit/workerman-runtime",
"type": "library",
"license": "MIT",
"description": "symfony workerman runtime",
"keywords": ["workerman", "symfony", "runtime", "php-runtime"],
"homepage": "https://github.com/niqingyang/workerman-runtime",
"minimum-stability": "stable",
"authors": [
{
"name": "niqingyang",
"email": "[email protected]"
}
],
"require": {
"symfony/runtime": "^6.0",
"symfony/http-kernel": "^6.0",
"workerman/workerman": "^4.0",
"php": ">=8.0.2",
"chubbyphp/chubbyphp-workerman-request-handler": "^2.0",
"nyholm/psr7": "^1.5",
"symfony/psr-http-message-bridge": "^2.1"
},
"autoload": {
"psr-4": {
"WellKit\\WorkermanRuntime\\": "src/"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}
Loading

0 comments on commit 61895af

Please sign in to comment.