generated from spatie/package-skeleton-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.42 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
{
"name": "banana-dev/banana-dev",
"description": "A PHP client to interact with Banana's machine learning inference APIs",
"keywords": [
"Banana", "Banana.dev", "Banana client", "API wrapper", "SDK"
],
"homepage": "https://github.com/bananaml/banana-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Banana.dev",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"php-http/discovery": "^1.17",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"laravel/pint": "^1.0",
"nyholm/psr7": "^1.8",
"phpunit/phpunit": "^10.3.2",
"spatie/ray": "^1.28",
"symfony/http-client": "^6.3"
},
"autoload": {
"psr-4": {
"BananaDev\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BananaDev\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}