-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.95 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 1.95 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
71
72
73
74
75
76
77
78
79
{
"name": "masterfermin02/vicidial-api-wrapper",
"description": "Beautiful and simple Implementation to integrate Vicidial API",
"keywords": [
"vicidial",
"api",
"wrapper",
"php"
],
"homepage": "https://github.com/masterfermin02/vicidial-api-wrapper",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Fermin Perdomo",
"email": "masterfermin02@gmail.com"
}
],
"require": {
"php": "^8.2",
"graham-campbell/guzzle-factory": "^5.0",
"ext-json": "*",
"php-http/discovery": "^1.19",
"php-http/multipart-stream-builder": "^1.3",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.1",
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~9",
"squizlabs/php_codesniffer": "~3.0",
"vlucas/phpdotenv": "^5.5",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.6",
"laravel/pint": "^1.13",
"nunomaduro/collision": "^7.10",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0",
"symfony/var-dumper": "^6.3"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-4": {
"VicidialApi\\": "src/"
},
"files": [
"src/VicidialApi.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "pint -v",
"refactor": "rector",
"test:lint": "pint --test -v",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "vendor/bin/phpunit",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}