-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 952 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 952 Bytes
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
{
"name": "adbros/microsoft",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.4",
"microsoft/microsoft-graph": "^2.0.0-RC15",
"microsoft/microsoft-graph-core": "@RC"
},
"require-dev": {
"tracy/tracy": "^2.9",
"contributte/qa": "^0.2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.2"
},
"autoload": {
"psr-4": {
"Adbros\\Microsoft\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"cs": "phpcs --standard=ruleset.xml",
"cs-fix": "phpcbf --standard=ruleset.xml",
"phpstan": "phpstan analyse -c phpstan.neon"
}
}