| Current Path : /home/users/unlimited/www/whatsjet-saas/Source/vendor/openai-php/laravel/ |
| Current File : /home/users/unlimited/www/whatsjet-saas/Source/vendor/openai-php/laravel/composer.json |
{
"name": "openai-php/laravel",
"description": "OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API",
"keywords": ["laravel","php", "openai", "sdk", "codex", "GPT-3", "DALL-E", "api", "client", "natural", "language", "processing"],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "enunomaduro@gmail.com"
}
],
"require": {
"php": "^8.1.0",
"guzzlehttp/guzzle": "^7.9.2",
"laravel/framework": "^9.46.0|^10.34.2|^11.23.5",
"openai-php/client": "^0.10.2"
},
"require-dev": {
"laravel/pint": "^1.17.3",
"pestphp/pest": "^2.35.1|^3.0.0",
"pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
"phpstan/phpstan": "^1.12.4",
"symfony/var-dumper": "^6.4.0|^7.1.4"
},
"autoload": {
"psr-4": {
"OpenAI\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"OpenAI\\Laravel\\ServiceProvider"
]
}
},
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}