-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "kriskoribsky/webservices",
"description": "Services designed for exposing various APIs to the framework core.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Kristian Koribsky",
"email": "kristian.koribsky@gmail.com",
"homepage": "https://kriskoribsky.me"
}
],
"homepage": "https://github.com/kriskoribsky/php-webservices",
"require": {
"php": "^8.2",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"friendsofphp/php-cs-fixer": "^3.19",
"guzzlehttp/guzzle": "^7.7",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.14",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^10",
"slam/phpstan-extensions": "^6.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Web\\Services\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {},
"files": []
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"php-http/discovery": true
},
"lock": false,
"platform-check": false,
"sort-packages": true
}
}