-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.57 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.57 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": "saintsystems/odata-client",
"version": "1.0.1",
"description": "Saint Systems OData Client for PHP",
"keywords": [
"odata",
"rest",
"php"
],
"homepage": "https://github.com/saintsystems/odata-client-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Saint Systems",
"email": "contact@saintsystems.com"
}
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4",
"nesbot/carbon": "^2.0 || ^3.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"phpunit/phpunit": "^9.5 || ^10.0 || ^11.0 || ^12.0",
"phpstan/phpstan": "^2.1"
},
"suggest": {
"guzzlehttp/guzzle": "^7.0 - For using the GuzzleHttpProvider implementation",
"psr/http-client": "^1.0 - For using PSR-18 HTTP clients",
"psr/http-factory": "^1.0 - For using PSR-17 HTTP factories",
"php-http/discovery": "^1.0 - For automatic discovery of PSR-17/PSR-18 implementations"
},
"autoload": {
"files": [
"src/Core/helpers.php"
],
"psr-4": {
"SaintSystems\\OData\\": "src"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "./scripts/phpunit.sh",
"int": "./scripts/integration-test.sh"
}
}