-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "modelflow-ai/mistral",
"description": "Client for mistral API.",
"type": "library",
"license": "MIT",
"keywords": [
"ai",
"mistral",
"api",
"client"
],
"autoload": {
"psr-4": {
"ModelflowAi\\Mistral\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ModelflowAi\\Mistral\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Johannes Wachter",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"modelflow-ai/api-client": "^0.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"php-cs-fixer/shim": "^3.15",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10, <1.10.55",
"phpstan/phpstan-phpunit": "^1.3@stable",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.18.1",
"symfony/dotenv": "^6.4 || ^7.0",
"phpspec/prophecy-phpunit": "^2.1@stable",
"jangregor/phpstan-prophecy": "^1.0",
"asapo/remove-vendor-plugin": "^0.1"
},
"scripts": {
"test-with-coverage": "@test --coverage-php var/reports/coverage.cov --coverage-cobertura=var/cobertura-coverage.xml --coverage-html var/reports/html --log-junit var/reports/junit.xml",
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit"
],
"phpstan": "@php vendor/bin/phpstan analyze",
"lint-rector": "@php vendor/bin/rector process --dry-run",
"lint-php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"lint": [
"@phpstan",
"@lint-php-cs",
"@lint-rector",
"@lint-composer"
],
"lint-composer": "@composer validate --strict",
"rector": "@php vendor/bin/rector process",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"fix": [
"@rector",
"@php-cs-fix"
]
},
"repositories": [
{
"type": "path",
"url": "./../*",
"options": {
"symlink": false
}
}
],
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"asapo/remove-vendor-plugin": true
}
},
"extra": {
"remove-folders": [
"modelflow-ai/*/vendor"
]
}
}