-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "wedesignit/common",
"description": "Reusable PSR-compatible API client framework with middleware and token authentication",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2 || ^8.3 || ^8.4",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"phpstan/phpstan": "^1.10",
"guzzlehttp/psr7": "^2.0",
"symfony/cache": "^6.0 || ^7.0",
"laminas/laminas-diactoros": "^3.6",
"guzzlehttp/guzzle": "^7.9",
"swisnl/laravel-psr-http-client-bridge": "^0.2.1",
"nyholm/psr7": "^1.8"
},
"autoload": {
"psr-4": {
"WeDesignIt\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WeDesignIt\\Common\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "phpcs",
"stan": "phpstan analyse src/ --level=max"
},
"minimum-stability": "stable",
"prefer-stable": true
}