forked from Garethp/php-ews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 820 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
{
"name": "garethp/php-ews",
"require": {
"garethp/http-playback": "^1.0",
"ext-curl": "*",
"ext-soap": "*"
},
"scripts": {
"cs": "./vendor/bin/phpcs --standard=ruleset.xml -np src/ tests/ examples/",
"cbf": "./vendor/bin/phpcbf --standard=ruleset.xml -np src/ tests/ examples/",
"generate": "php bin/generateModels.php && composer cbf"
},
"autoload": {
"psr-4": {
"garethp\\ews\\": "src/",
"garethp\\ews\\Test\\": "tests/src"
},
"files": [
"src/Utilities/ensureIsArray.php",
"src/Utilities/ensureIsDateTime.php",
"src/Utilities/cloneValue.php",
"src/Utilities/getFolderIds.php"
]
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.2",
"squizlabs/php_codesniffer": "~2.3",
"mockery/mockery": "~0.9.4",
"goetas/xsd2php": "2.*@dev",
"goetas/xsd-reader": "2.*@dev"
}
}