Skip to content

Commit b90698b

Browse files
first try on creating composer in my life
1 parent 36d95d5 commit b90698b

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

composer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "stefanak-michal/bolt",
3+
"description": "Bolt protocol library over TCP socket",
4+
"keywords": ["neo4j", "bolt", "socket", "database"],
5+
"homepage": "https://github.com/stefanak-michal/Bolt",
6+
"type": "library",
7+
"readme": "README.md",
8+
"license": "MIT",
9+
"minimum-stability": "stable",
10+
"require": {
11+
"php": ">=7.1.0",
12+
"ext-sockets": "*",
13+
"ext-mbstring": "*"
14+
},
15+
"support": {
16+
"issues": "https://github.com/stefanak-michal/Bolt/issues",
17+
"source": "https://github.com/stefanak-michal/Bolt"
18+
},
19+
"funding": [
20+
{
21+
"type": "paypal",
22+
"url": "https://www.paypal.me/MichalStefanak"
23+
}
24+
],
25+
"authors": [
26+
{
27+
"name": "Michal Stefanak",
28+
"role": "Developer"
29+
}
30+
],
31+
"autoload": {
32+
"psr-4": {
33+
"Bolt\\": "/"
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)