-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
85 lines (85 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wikibase-solutions/php-cypher-dsl",
"description": "A query builder for the Cypher query language written in PHP",
"type": "library",
"keywords": [
"neo4j",
"cypher",
"dsl",
"graph",
"querybuilder",
"query",
"builder"
],
"homepage": "https://wikibase-solutions.com",
"license": "MIT",
"authors": [
{
"name": "Marijn van Wezel",
"email": "[email protected]",
"homepage": "https://wikibase-solutions.com/author/marijn",
"role": "Maintainer"
},
{
"name": "Wout Gevaert",
"email": "[email protected]",
"homepage": "https://wikibase-solutions.com/author/wout",
"role": "Developer"
},
{
"name": "Ghlen Nagels",
"email": "[email protected]",
"homepage": "https://nagels.tech",
"role": "Developer"
},
{
"name": "Lars Akkermans",
"email": "[email protected]",
"homepage": "https://wikibase-solutions.com/author/lars",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/WikibaseSolutions/php-cypher-dsl/issues",
"wiki": "https://github.com/WikibaseSolutions/php-cypher-dsl/wiki",
"source": "https://github.com/WikibaseSolutions/php-cypher-dsl"
},
"require": {
"php": ">=7.4",
"ext-ctype": "*",
"ext-openssl": "*",
"symfony/polyfill-php80": "^1.25",
"symfony/polyfill-php81": "^1.25"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"infection/infection": "^0.25.5",
"friendsofphp/php-cs-fixer": "^3.0",
"rregeer/phpunit-coverage-check": "^0.3.1",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"WikibaseSolutions\\CypherDSL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WikibaseSolutions\\CypherDSL\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.dist.php --verbose"
},
"minimum-stability": "stable",
"prefer-stable": true
}