Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iRedds committed Oct 10, 2022
0 parents commit 1b9d2ec
Show file tree
Hide file tree
Showing 15 changed files with 2,461 additions and 0 deletions.
Empty file added .gitignore
Empty file.
Empty file added README.md
Empty file.
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "iredds/psr-15-example",
"description": "An example implementation of PSR-15.",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "iRedds"
}
],
"require": {
"php" : "7.4",
"psr/http-server-handler": "*",
"psr/http-server-middleware": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Dev\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dev\\Tests\\": "tests/"
}
},
"scripts": {
"test" : "vendor/bin/phpunit --no-cover"
}
}
Loading

0 comments on commit 1b9d2ec

Please sign in to comment.