-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
37 lines (37 loc) · 919 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
{
"name": "ediasoft/midjourney-api-php",
"description": "Midjourney API PHP Client for PHP.",
"license": "MIT",
"version": "1.1.1",
"type": "library",
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"composer/ca-bundle": "^1.3.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"symfony/var-dumper": "^5.4.9",
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.4",
"friendsofphp/php-cs-fixer": "^3.13"
},
"authors": [{
"name": "eDiasoft",
"email": "[email protected]",
"homepage": "https://ediasoft.com",
"role": "Developer"
}],
"autoload": {
"psr-4": {
"eDiasoft\\Midjourney\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}