-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.38 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "graphredis/graphredis",
"description": "A lightweight graph database implementation using Redis as storage backend",
"type": "library",
"keywords": ["graph", "database", "redis", "php", "nosql", "memory"],
"homepage": "https://github.com/yourname/GraphRedis",
"license": "MIT",
"authors": [
{
"name": "Your Name",
"email": "your.email@example.com",
"homepage": "https://github.com/yourname",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-redis": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5|^10.0",
"phpstan/phpstan": "^1.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"GraphRedis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphRedis\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src tests --level=8",
"cs-check": "phpcs src tests --standard=PSR12",
"cs-fix": "phpcbf src tests --standard=PSR12",
"demo": "php examples/demo.php"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}