forked from saintsystems/dynamics-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 1.01 KB
/
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
36
37
38
{
"name": "saintsystems/dynamics-sdk-php",
"version": "0.1.0",
"description": "Saint Systems Microsoft Dynamics 365 SDK for PHP",
"keywords": ["crm", "xrm", "dynamics", "dynamics crm", "dynamics 365", "sdk"],
"homepage": "https://github.com/saintsystems/dynamics-sdk-php",
"license": "MIT",
"type": "library",
"repositories": [
{
"type": "github",
"url": "https://github.com/soapboxcommunication/odata-client-php.git"
}
],
"authors": [
{
"name": "Saint Systems",
"email": "[email protected]"
},
{
"name": "Soapbox",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^6.2 || ^7",
"saintsystems/odata-client": "dev-master"
},
"autoload": {
"psr-4": {
"Microsoft\\Dynamics\\": "src/Dynamics"
}
},
"config": {
"preferred-install": "dist"
}
}