forked from saintsystems/odata-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "saintsystems/odata-client",
"version": "0.4.2",
"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": "[email protected]"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.3",
"nesbot/carbon": "^2.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"files": [
"src/Core/helpers.php"
],
"psr-4": {
"SaintSystems\\OData\\": "src"
}
},
"config": {
"preferred-install": "dist"
}
}