-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.48 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.48 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "looksystems/eloquent-cypher",
"version": "0.1.0",
"description": "A production-ready Neo4j adapter for Laravel Eloquent - true drop-in replacement with zero code changes",
"type": "library",
"license": "MIT",
"keywords": [
"neo4j",
"laravel",
"eloquent",
"graph",
"database",
"cypher",
"orm",
"graph-database",
"neo4j-driver",
"laravel-package"
],
"homepage": "https://github.com/looksystems/eloquent-cypher",
"support": {
"issues": "https://github.com/looksystems/eloquent-cypher/issues",
"source": "https://github.com/looksystems/eloquent-cypher",
"docs": "https://github.com/looksystems/eloquent-cypher/wiki"
},
"autoload": {
"psr-4": {
"Look\\EloquentCypher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"authors": [
{
"name": "Adrian Keeling-Look",
"email": "info@look.systems"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3|^8.4",
"illuminate/database": "^10.0|^11.0|^12.0",
"laudis/neo4j-php-client": "^3.4",
"wikibase-solutions/php-cypher-dsl": "^3.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "./vendor/bin/pest",
"test:coverage": "command -v herd > /dev/null 2>&1 && herd coverage ./vendor/bin/pest || ./vendor/bin/pest --coverage-text",
"test:filter": "./vendor/bin/pest --filter",
"analyse": "./vendor/bin/phpstan analyse src/",
"format": "./vendor/bin/pint --test",
"format:fix": "./vendor/bin/pint",
"neo4j:up": "docker-compose up -d",
"neo4j:down": "docker-compose down",
"neo4j:clean": "docker-compose down -v",
"check": [
"@test",
"@analyse",
"@format"
],
"ci": [
"@test:coverage",
"@analyse",
"@format"
]
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"pestphp/pest": "*",
"pestphp/pest-plugin-laravel": "*",
"rector/rector": "^2.1",
"phpstan/phpstan": "^2.1",
"laravel/pint": "^1.25"
}
}