-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.12 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.12 KB
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
66
67
68
69
70
{
"name": "eventjet/openai",
"type": "library",
"description": "",
"license": "proprietary",
"require": {
"php": ">=8.2",
"eventjet/json": "^0.1.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1"
},
"require-dev": {
"eventjet/coding-standard": "^3.12",
"guzzlehttp/guzzle": "^7.9",
"infection/infection": "^0.27.0",
"maglnet/composer-require-checker": "^4.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10.2",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.10"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Eventjet\\OpenAi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eventjet\\Test\\Integration\\OpenAi\\": "tests/integration",
"Eventjet\\Test\\Functional\\OpenAi\\": "tests/functional"
}
},
"repositories": [
{
"type": "composer",
"url": "https://pack.eventjet.at/"
}
],
"minimum-stability": "stable",
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@psalm",
"@phpstan",
"@phpunit",
"@infection"
],
"check-deps": "composer-require-checker",
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"infection": "infection -jmax",
"infection-diff": "infection -jmax --git-diff-lines --min-msi=100 --min-covered-msi=100 --ignore-msi-with-no-mutations",
"infection-xdebug": "infection --initial-tests-php-options='-d zend_extension=xdebug.so'",
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"psalm": "psalm"
}
}