-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.29 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
{
"name": "laravel-freelancer-nl/fluentaql",
"description": "PHP AQL Query Builder",
"keywords": [
"fluentaql",
"arangodb",
"aql",
"aql query",
"aql query builder"
],
"license": "MIT",
"authors": [
{
"name": "Laravel Freelancer",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": "^8.1",
"ext-json": "*",
"spatie/ray": "^1.34"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.6",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.4",
"nikic/php-parser": "^4.2@dev",
"phpmd/phpmd": "^2.9",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^10.5",
"scrutinizer/ocular": "^1.8"
},
"autoload": {
"psr-4": {
"LaravelFreelancerNL\\FluentAQL\\": "src",
"Tests\\": "tests"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"repositories": [],
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"style": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}