forked from joshkulesza/php-flagr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.32 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
{
"name": "healthengine/php-flagr",
"description": "",
"keywords": [
"swagger",
"php",
"sdk",
"api"
],
"homepage": "http://swagger.io",
"license": "proprietary",
"authors": [
{
"name": "Swagger and contributors",
"homepage": "https://github.com/swagger-api/swagger-codegen"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.3.1 || ^7.0.1 || ^7.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.9",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4"
},
"autoload": {
"psr-4": { "Flagr\\Client\\" : "lib/" }
},
"autoload-dev": {
"psr-4": { "Flagr\\Client\\" : "test/" }
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyse": "@phpstan analyse",
"fix": "@php-cs-fixer fix",
"lint": "@php-cs-fixer fix --diff --dry-run",
"php-cs-fixer": "@php vendor/bin/php-cs-fixer",
"phpstan": "@php vendor/bin/phpstan"
},
"replace": {
"joshkulesza/php-flagr": "*"
}
}