Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit bd76f8c

Browse files
committed
First commit
0 parents  commit bd76f8c

File tree

4 files changed

+82
-0
lines changed

4 files changed

+82
-0
lines changed

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
49+

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# phpssdb
2+
3+
Readme will be completed coming soon...

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "phpfastcache/phpssdb",
3+
"type" : "library",
4+
"description": "PHP SSDB Driver for phpFastCache",
5+
"keywords": ["cache", "ssdb", "driver"],
6+
"homepage": "http://www.phpfastcache.com",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Khoa Bui",
11+
"email": "khoaofgod@gmail.com",
12+
"homepage": "http://www.phpfastcache.com",
13+
"role": "Developer"
14+
},
15+
{
16+
"name": "Georges.L",
17+
"email": "contact@geolim4.com",
18+
"homepage": "https://github.com/Geolim4",
19+
"role": "Developer"
20+
}
21+
],
22+
"require": {
23+
"php": ">=5.4.0"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"phpssdb\\": "src/phpssdb/"
28+
}
29+
}
30+
}

src/phpfastcache-bundle/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)