Skip to content

Commit 2c0025e

Browse files
authored
Merge pull request #1 from Syndesi/feature/update-documentation
Update links due to ownership transfer
2 parents 341aadf + 168c25a commit 2c0025e

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

Readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[![GitHub](https://img.shields.io/github/license/Syndesi/cypher-entity-manager)](https://github.com/Syndesi/cypher-entity-manager/blob/main/LICENSE)
1+
[![GitHub](https://img.shields.io/github/license/neo4j-php/cypher-entity-manager)](https://github.com/neo4j-php/cypher-entity-manager/blob/main/LICENSE)
22
![Neo4j Version Support](https://img.shields.io/badge/Neo4j-4.4%2B-blue)
33
![Packagist PHP Version Support (specify version)](https://img.shields.io/packagist/php-v/syndesi/cypher-entity-manager/dev-main)
44
![Packagist Version](https://img.shields.io/packagist/v/syndesi/cypher-entity-manager)
55
![Packagist Downloads](https://img.shields.io/packagist/dm/syndesi/cypher-entity-manager)
66

7-
[![Unit Tests](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-unit-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-unit-test.yml)
8-
[![Mutant Test](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-mutant-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-mutant-test.yml)
9-
[![Leak Tests](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-leak-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-leak-test.yml)
10-
[![PHPStan](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-phpstan.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-phpstan.yml)
11-
[![Psalm](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-psalm.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-psalm.yml)
12-
[![Code Style](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-code-style.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-code-style.yml)
13-
[![YML lint](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-yml-lint.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-yml-lint.yml)
14-
[![Markdown lint](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml)
7+
[![Unit Tests](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-unit-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-unit-test.yml)
8+
[![Mutant Test](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-mutant-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-mutant-test.yml)
9+
[![Leak Tests](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-leak-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-leak-test.yml)
10+
[![PHPStan](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-phpstan.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-phpstan.yml)
11+
[![Psalm](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-psalm.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-psalm.yml)
12+
[![Code Style](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-code-style.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-code-style.yml)
13+
[![YML lint](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-yml-lint.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-yml-lint.yml)
14+
[![Markdown lint](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml)
1515
[![Test Coverage](https://api.codeclimate.com/v1/badges/ecd3da92ddb4d8ac99a5/test_coverage)](https://codeclimate.com/github/Syndesi/cypher-entity-manager/test_coverage)
1616
[![Maintainability](https://api.codeclimate.com/v1/badges/ecd3da92ddb4d8ac99a5/maintainability)](https://codeclimate.com/github/Syndesi/cypher-entity-manager/maintainability)
1717

@@ -21,6 +21,6 @@ This library provides an entity manager for Cypher data types.
2121

2222
Links:
2323

24-
- [Documentation](https://syndesi.github.io/cypher-entity-manager)
24+
- [Documentation](https://neo4j-php.github.io/cypher-entity-manager)
2525
- [Packagist](https://packagist.org/packages/syndesi/cypher-entity-manager)
2626
- [Neo4j PHP Community](https://github.com/neo4j-php)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "syndesi/cypher-entity-manager",
33
"description": "Provides an entity manager for Cypher data types",
44
"type": "library",
5-
"homepage": "https://syndesi.github.io/cypher-entity-manager/#/",
5+
"homepage": "https://neo4j-php.github.io/cypher-entity-manager/#/",
66
"license": "MIT",
77
"authors": [
88
{

docs/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[![GitHub](https://img.shields.io/github/license/Syndesi/cypher-entity-manager)](https://github.com/Syndesi/cypher-entity-manager/blob/main/LICENSE)
1+
[![GitHub](https://img.shields.io/github/license/neo4j-php/cypher-entity-manager)](https://github.com/neo4j-php/cypher-entity-manager/blob/main/LICENSE)
22
![Neo4j Version Support](https://img.shields.io/badge/Neo4j-4.4%2B-blue)
33
![Packagist PHP Version Support (specify version)](https://img.shields.io/packagist/php-v/syndesi/cypher-entity-manager/dev-main)
44
![Packagist Version](https://img.shields.io/packagist/v/syndesi/cypher-entity-manager)
55
![Packagist Downloads](https://img.shields.io/packagist/dm/syndesi/cypher-entity-manager)
66

7-
[![Unit Tests](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-unit-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-unit-test.yml)
8-
[![Mutant Test](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-mutant-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-mutant-test.yml)
9-
[![Leak Tests](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-leak-test.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-leak-test.yml)
10-
[![PHPStan](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-phpstan.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-phpstan.yml)
11-
[![Psalm](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-psalm.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-psalm.yml)
12-
[![Code Style](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-code-style.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-code-style.yml)
13-
[![YML lint](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-yml-lint.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-yml-lint.yml)
14-
[![Markdown lint](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml/badge.svg)](https://github.com/Syndesi/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml)
7+
[![Unit Tests](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-unit-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-unit-test.yml)
8+
[![Mutant Test](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-mutant-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-mutant-test.yml)
9+
[![Leak Tests](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-leak-test.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-leak-test.yml)
10+
[![PHPStan](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-phpstan.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-phpstan.yml)
11+
[![Psalm](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-psalm.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-psalm.yml)
12+
[![Code Style](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-code-style.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-code-style.yml)
13+
[![YML lint](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-yml-lint.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-yml-lint.yml)
14+
[![Markdown lint](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml/badge.svg)](https://github.com/neo4j-php/cypher-entity-manager/actions/workflows/ci-markdown-lint.yml)
1515
[![Test Coverage](https://api.codeclimate.com/v1/badges/ecd3da92ddb4d8ac99a5/test_coverage)](https://codeclimate.com/github/Syndesi/cypher-entity-manager/test_coverage)
1616
[![Maintainability](https://api.codeclimate.com/v1/badges/ecd3da92ddb4d8ac99a5/maintainability)](https://codeclimate.com/github/Syndesi/cypher-entity-manager/maintainability)
1717

@@ -21,6 +21,6 @@ This library provides an entity manager for Cypher data types.
2121

2222
Links:
2323

24-
- [Documentation](https://syndesi.github.io/cypher-entity-manager)
24+
- [Documentation](https://neo4j-php.github.io/cypher-entity-manager)
2525
- [Packagist](https://packagist.org/packages/syndesi/cypher-entity-manager)
2626
- [Neo4j PHP Community](https://github.com/neo4j-php)

0 commit comments

Comments
 (0)