-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 958 Bytes
/
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
{
"name": "ziffmedia/ksql",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ZiffMedia\\Ksql\\": "src/"
}
},
"authors": [
{
"name": "Josh Butts",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "^1.22",
"symfony/var-dumper": "^6.2",
"laravel/pint": "^1.4",
"orchestra/testbench": "^7.19",
"calebporzio/sushi": "^2.4",
"pestphp/pest-plugin-laravel": "^1.4",
"mockery/mockery": "^1.5"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": ">=8.1",
"symfony/http-client": "^6.2",
"psr/log": "^3.0"
},
"extra": {
"laravel": {
"providers": [
"ZiffMedia\\Ksql\\Laravel\\KsqlServiceProvider"
]
}
}
}