-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
composer.json
41 lines (41 loc) · 1.04 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
39
40
41
{
"name": "vgrem/php-spo",
"description": "PHP Office 365 library. It allows to performs CRUD operations against Office 365 resources via an REST/OData based API",
"type": "library",
"keywords": [
"office365",
"microsoftgraph",
"rest",
"curl",
"api"
],
"authors": [
{
"name": "Vadim Gremyachev",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-libxml": "*",
"firebase/php-jwt": "*"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload-dev": {
"psr-4": {
"Office365\\": ["tests/", "tests/common/", "tests/sharepoint/", "tests/onenote/", "tests/onedrive/", "tests/outlookservices/", "tests/directory/", "tests/teams/", "tests/reports/"]
}
},
"autoload": {
"psr-4": {
"Office365\\": "src/"
}
}
}