Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework #79

Merged
merged 15 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
php_version: 8.0
version: 2
- name: "PHP-CS-Fixer"
run: vendor/bin/php-cs-fixer fix --dry-run
run: composer check-cs
- name: "PSalm"
run: ./console debug:config && vendor/bin/psalm --show-info=true
run: composer psalm
9 changes: 1 addition & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,8 @@ jobs:
max-parallel: 10
matrix:
php: [ '8.0', '8.1', '8.2']
sf_version: [ '5.4.*', '6.2.*', '6.3.*' ]
sf_version: [ '5.4.*', '6.0.*', '6.3.*' ]
exclude:
- php: 7.4
sf_version: 6.2.*
- php: 8.0
sf_version: 6.2.*
- php: 7.4
sf_version: 6.3.*
- php: 8.0
sf_version: 6.3.*

Expand All @@ -39,5 +33,4 @@ jobs:
php_version: ${{ matrix.php }}
memory_limit: 1024M
version: 9
testsuite: Unit
bootstrap: vendor/autoload.php
23 changes: 1 addition & 22 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
try {
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/src')
->in(__DIR__.'/config')
->in(__DIR__.'/tests');
} catch (Throwable $e) {
echo $e->getMessage()."\n";
Expand All @@ -35,28 +36,6 @@
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,

'array_syntax' => ['syntax' => 'short'],
'linebreak_after_opening_tag' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
'phpdoc_to_comment' => false,
'yoda_style' => false,
'declare_strict_types' => true,
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => true,
'import_functions' => true,
],
ConstructorEmptyBracesFixer::name() => true,
IssetToArrayKeyExistsFixer::name() => true,
MultilineCommentOpeningClosingAloneFixer::name() => true,
MultilinePromotedPropertiesFixer::name() => true,
PhpUnitAssertArgumentsOrderFixer::name() => true,
PhpdocNoSuperfluousParamFixer::name() => true,
PhpdocParamOrderFixer::name() => true,
StringableInterfaceFixer::name() => true,
])
->setFinder($finder)
->registerCustomFixers(new PhpCsFixerCustomFixers\Fixers())
;
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM php:8.1-cli
RUN apt-get update \
&& apt-get install -y \
libzip-dev \
unzip \
git \
wget \
&& docker-php-ext-install -j$(nproc) bcmath sockets \
&& pecl install xdebug \
&& docker-php-ext-enable xdebug && \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer

WORKDIR /opt/project



10 changes: 10 additions & 0 deletions bin/console.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

use Neo4j\Neo4jBundle\Tests\App\TestKernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;

require __DIR__ . '/../vendor/autoload.php';

$console = new Application(new TestKernel('test', true));

$console->run();
23 changes: 10 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,21 @@
"name": "neo4j/neo4j-bundle",
"description": "Symfony integration for Neo4j",
"type": "symfony-bundle",
"keywords": ["neo4j"],
"keywords": ["neo4j", "symfony", "bundle", "graph", "database", "cypher"],
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
},
{
"name": "Xavier Coureau",
"email": "[email protected]"
},
{
"name": "Ghlen Nagels",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"laudis/neo4j-php-client": "dev-main",
"laudis/neo4j-php-client": "^3.0.5",
"twig/twig": "^3.0",
"ext-json": "*",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/config": "^6.0"
"symfony/config": "^5.4 || ^6.0"
},
"require-dev": {
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
Expand All @@ -35,9 +27,9 @@
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/test-pack": "^1.1",
"symfony/yaml": "^5.4 || ^6.0",
"vimeo/psalm": "^5.12",
"vimeo/psalm": "^5.15.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"friendsofphp/php-cs-fixer": "^3.30",
"psalm/plugin-phpunit": "^0.18"
},
"autoload": {
Expand All @@ -55,5 +47,10 @@
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"psalm": "php bin/console.php cache:warmup && vendor/bin/psalm --show-info=true",
"fix-cs": "vendor/bin/php-cs-fixer fix",
"check-cs": "vendor/bin/php-cs-fixer fix --dry-run"
}
}
25 changes: 0 additions & 25 deletions config/data-collector.xml

This file was deleted.

54 changes: 54 additions & 0 deletions config/services.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?php

use Laudis\Neo4j\Basic\Driver;
use Laudis\Neo4j\Basic\Session;
use Laudis\Neo4j\Contracts\ClientInterface;
use Laudis\Neo4j\Contracts\DriverInterface;
use Laudis\Neo4j\Contracts\SessionInterface;
use Laudis\Neo4j\Contracts\TransactionInterface;
use Neo4j\Neo4jBundle\ClientFactory;
use Neo4j\Neo4jBundle\EventHandler;
use Neo4j\Neo4jBundle\EventListener\Neo4jProfileListener;
use Neo4j\Neo4jBundle\SymfonyClient;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

use function Symfony\Component\DependencyInjection\Loader\Configurator\service;

return static function (ContainerConfigurator $configurator) {
$services = $configurator->services();

$services->set('neo4j.event_handler', EventHandler::class)
->autowire()
->autoconfigure();

$services->set('neo4j.client_factory', ClientFactory::class)
->args([
service('neo4j.event_handler'),
]);

$services->set('neo4j.client', SymfonyClient::class)
->factory([service('neo4j.client_factory'), 'create'])
->public();

$services->set('neo4j.driver', Driver::class)
->factory([service('neo4j.client'), 'getDriver'])
->public();

$services->set('neo4j.session', Session::class)
->factory([service('neo4j.driver'), 'createSession'])
->share(false)
->public();

$services->set('neo4j.transaction', TransactionInterface::class)
->factory([service('neo4j.session'), 'beginTransaction'])
->share(false)
->public();

$services->alias(ClientInterface::class, 'neo4j.client');
$services->alias(DriverInterface::class, 'neo4j.driver');
$services->alias(SessionInterface::class, 'neo4j.session');
$services->alias(TransactionInterface::class, 'neo4j.transaction');

$services->set('neo4j.subscriber', Neo4jProfileListener::class)
->tag('kernel.event_subscriber');
};
22 changes: 0 additions & 22 deletions config/services.xml

This file was deleted.

33 changes: 33 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: '3.7'
networks:
neo4j-symfony:

services:
app:
user: ${UID-1000}:${GID-1000}
build:
context: .
ports:
- ${DOCKER_HOST_APP_PORT:-8000}:80
volumes:
- ./:/opt/project
environment:
- NEO4J_HOST=neo4j
- NEO4J_DATABASE=neo4j
- NEO4J_PORT=7687
- NEO4J_USER=neo4j
- NEO4J_PASSWORD=testtest
working_dir: /opt/project
networks:
- neo4j-symfony

neo4j:
environment:
- NEO4J_AUTH=neo4j/testtest
image: neo4j:5
ports:
- ${DOCKER_HOST_NEO4J_HTTP_PORT:-7474}:7474
- ${DOCKER_HOST_NEO4J_BOLT_PORT:-7687}:7687
networks:
- neo4j-symfony

47 changes: 33 additions & 14 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,46 @@
[![Total Downloads](https://img.shields.io/packagist/dt/neo4j/neo4j-bundle.svg?style=flat-square)](https://packagist.org/packages/neo4j/neo4j-bundle)


## Install
Installation
============

Via Composer
Make sure Composer is installed globally, as explained in the
[installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.

``` bash
Applications that use Symfony Flex
----------------------------------

Open a command console, enter your project directory and execute:

```console
$ composer require neo4j/neo4j-bundle
```

Applications that don't use Symfony Flex
----------------------------------------

### Step 1: Download the Bundle

Open a command console, enter your project directory and execute the
following command to download the latest stable version of this bundle:

```console
$ composer require neo4j/neo4j-bundle
```

Enable the bundle in your kernel:
### Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles
in the `config/bundles.php` file of your project:

``` php
<?php
// app/AppKernel.php
```php
// config/bundles.php

public function registerBundles()
{
$bundles = array(
// ...
new Neo4j\Neo4jBundle\Neo4jBundle(),
);
}
return [
// ...
\Neo4j\Neo4jBundle\Neo4jBundle::class => ['all' => true],
];
```

## Documentation
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="Unit tests">
<directory suffix="Test.php">./Tests/Unit</directory>
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Functional tests">
<directory suffix="Test.php">./Tests/Functional</directory>
<directory suffix="Test.php">./tests/Functional</directory>
</testsuite>
</testsuites>
<php>
Expand Down
1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
>
<projectFiles>
<directory name="src"/>
<directory name="config"/>
<directory name="tests"/>
<ignoreFiles>
<directory name="vendor"/>
Expand Down
2 changes: 2 additions & 0 deletions public/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
Loading