Skip to content

Commit da43d95

Browse files
fixed same name of workflows. updated readme.
1 parent cf7b37c commit da43d95

File tree

3 files changed

+28
-14
lines changed

3 files changed

+28
-14
lines changed

.github/workflows/db-test-php-7.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests with a database
1+
name: Tests with a database PHP7
22

33
on:
44
push:

.github/workflows/db-test-php-8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests with a database
1+
name: Tests with a database PHP8
22

33
on:
44
push:

README.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,48 @@
33
# Bolt
44
Bolt protocol library over TCP socket. Bolt protocol is created and in use for communication with [Neo4j](https://neo4j.com/) Graph database. The Bolt documentation is available at [https://7687.org/](https://7687.org/). This library is aimed to be low level and keep up with protocol messages architecture and specifications.
55

6-
![DB Tests](https://github.com/neo4j-php/Bolt/actions/workflows/db-tests.yml/badge.svg?branch=master)
7-
![No DB Tests PHP7](https://github.com/neo4j-php/Bolt/actions/workflows/no-db-test-php-7.yml/badge.svg?branch=master)
8-
![No DB Tests PHP8](https://github.com/neo4j-php/Bolt/actions/workflows/no-db-test-php-8.yml/badge.svg?branch=master)
9-
10-
![](https://img.shields.io/github/stars/stefanak-michal/Bolt)
11-
![](https://img.shields.io/packagist/dt/stefanak-michal/bolt)
12-
![](https://img.shields.io/github/v/release/stefanak-michal/bolt)
6+
![DB Tests PHP7](https://github.com/neo4j-php/Bolt/actions/workflows/db-test-php-7.yml/badge.svg?branch=master)
7+
![DB Tests PHP8](https://github.com/neo4j-php/Bolt/actions/workflows/db-test-php-8.yml/badge.svg?branch=master)
8+
![No DB Tests PHP7](https://github.com/neo4j-php/Bolt/actions/workflows/no-db-test-php-7.yml/badge.svg?branch=master)
9+
![No DB Tests PHP8](https://github.com/neo4j-php/Bolt/actions/workflows/no-db-test-php-8.yml/badge.svg?branch=master)
10+
11+
![](https://img.shields.io/github/stars/stefanak-michal/Bolt)
12+
![](https://img.shields.io/packagist/dt/stefanak-michal/bolt)
13+
![](https://img.shields.io/github/v/release/stefanak-michal/bolt)
1314
![](https://img.shields.io/github/commits-since/stefanak-michal/bolt/latest)
1415

1516
## Version support
1617

17-
We are trying to keep up and this library supports **Neo4j <= 4.4**.
18+
We are trying to keep up and this library supports **Neo4j <= 4.4** with **Bolt <= 4.4**.
1819

19-
[More info](https://github.com/neo4j-php/Bolt/wiki/Version-support)
20+
https://7687.org/#bolt-protocol-and-neo4j-compatibility
2021

2122
## Requirements
2223

23-
It's hard to live without all new features which means we keep at **PHP >= 7.1**.
24+
Keep up with [supported versions](https://www.php.net/supported-versions.php) means we are at **PHP >= 7.4**.
25+
26+
### Extensions
2427

25-
[More info](https://github.com/neo4j-php/Bolt/wiki/Requirements)
28+
- mbstring https://www.php.net/manual/en/book.mbstring.php
29+
- sockets https://www.php.net/manual/en/book.sockets.php (optional)
30+
- openssl https://www.php.net/manual/en/book.openssl.php (optional)
31+
- phpunit >= 9 https://phpunit.de/ (development)
2632

2733
## Installation
2834

2935
You can use composer or download this repository.
3036

37+
### Composer
38+
39+
Run the following command to install the latest applicable version of the package:
40+
3141
`composer require stefanak-michal/bolt`
3242

33-
[More info](https://github.com/neo4j-php/Bolt/wiki/Installation)
43+
### Manual
44+
45+
1. Download [latest release](https://github.com/neo4j-php/Bolt/releases/latest) or [master](https://github.com/neo4j-php/Bolt)
46+
2. Unpack
47+
3. Copy content of ```src``` directory to your project
3448

3549
## Usage
3650

0 commit comments

Comments
 (0)