-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
65 lines (65 loc) · 1.74 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
{
"name": "boone-studios/laravel-surrealdb",
"description": "Integrates SurrealDB with the Laravel framework",
"license": "MIT",
"type": "library",
"keywords": [
"laravel",
"eloquent",
"surrealdb",
"database",
"model"
],
"authors": [
{
"name": "Boone Studios, LLC",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/boone-studios/laravel-surrealdb",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/container": "^9.0 || ^10.0 || ^11.0",
"illuminate/database": "^9.0 || ^10.0 || ^11.0",
"illuminate/events": "^9.0 || ^10.0 || ^11.0",
"illuminate/support": "^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"doctrine/dbal": "^2.13.3 || ^3.1.4 || ^4.2.1",
"ergebnis/composer-normalize": "^2.44",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.6",
"pestphp/pest": "^3.5",
"phpunit/phpunit": "^11.4"
},
"autoload": {
"psr-4": {
"BooneStudios\\Surreal\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BooneStudios\\Surreal\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BooneStudios\\Surreal\\SurrealServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage-html coverage"
}
}