Skip to content

Commit 7fcc18c

Browse files
Dead simple Delegte implementation
1 parent f91dc38 commit 7fcc18c

File tree

8 files changed

+1766
-0
lines changed

8 files changed

+1766
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/tests export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/LICENSE export-ignore
6+
/phpunit.xml export-ignore
7+
/README.md export-ignore

.gitignore

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

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "moon/http-middleware",
3+
"require": {
4+
"php": ">=7.1",
5+
"psr/http-message": "^1.0",
6+
"http-interop/http-middleware": "^0.4.1"
7+
},
8+
"require-dev": {
9+
"phpunit/phpunit": "^6.2"
10+
},
11+
"authors": [
12+
{
13+
"name": "Damiano Petrungaro",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"autoload": {
18+
"psr-4": {
19+
"Moon\\HttpMiddleware\\": "src/"
20+
}
21+
},
22+
"autoload-dev": {
23+
"psr-4": {
24+
"Moon\\HttpMiddleware\\Unit\\": "tests/Unit/"
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)