Skip to content

Commit 6e95d90

Browse files
committed
Init commit
0 parents  commit 6e95d90

File tree

5 files changed

+849
-0
lines changed

5 files changed

+849
-0
lines changed

.gitignore

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

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "stackkit/cache-standalone",
3+
"authors": [
4+
{
5+
"name": "larsvankleef",
6+
"email": "larsvankleef@outlook.com"
7+
}
8+
],
9+
"autoload": {
10+
"psr-4": {
11+
"stackkit\\cache-standalone\\": "src/"
12+
}
13+
},
14+
"require": {
15+
"illuminate/cache": "^5.5",
16+
"illuminate/container": "^5.5",
17+
"illuminate/filesystem": "^5.5",
18+
"illuminate/redis": "^5.5",
19+
"predis/predis": "^1.1"
20+
}
21+
}

0 commit comments

Comments
 (0)