-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
61 lines (61 loc) · 2.02 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "neo4j/neo4j-bundle",
"description": "Symfony integration for Neo4j",
"type": "symfony-bundle",
"keywords": ["neo4j", "symfony", "bundle", "graph", "database", "cypher"],
"license": "MIT",
"authors": [
{
"name": "Ghlen Nagels",
"email": "ghlen@nagels.tech"
}
],
"require": {
"php": ">=8.1",
"laudis/neo4j-php-client": "^3.1",
"twig/twig": "^3.0",
"ext-json": "*",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.30",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.3 || ^5.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/routing": "^5.4 || ^6.0 || ^7.0",
"symfony/stopwatch": "^6.4",
"symfony/test-pack": "^1.1",
"symfony/twig-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"vimeo/psalm": "^5.15.0"
},
"autoload": {
"psr-4": {
"Neo4j\\Neo4jBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Neo4j\\Neo4jBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"psalm": "APP_ENV=dev 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",
"ci-symfony-install-version": "./.github/scripts/setup-symfony-env.bash"
}
}