-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "sandwave-io/office-365-php",
"description": "A PHP SDK for the Microsoft office 365 API.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.5.0",
"jms/serializer": "^3.23.0",
"symfony/yaml": "^6.2.7"
},
"require-dev": {
"ekino/phpstan-banned-code": "^1.0.0",
"ergebnis/phpstan-rules": "^1.0.0",
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan": "^1.10.6",
"phpstan/phpstan-deprecation-rules": "^1.1.2",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpunit/phpunit": "^10.0.15",
"sandwave-io/php-cs-fixer-config": "^1.0.0",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SandwaveIo\\Office365\\": "./src"
}
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@lint",
"@test:unit"
],
"test:unit": [
"vendor/bin/phpunit --coverage-text"
],
"test:types": [
"vendor/bin/phpstan analyze"
],
"lint": [
"vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none -vvv"
],
"lint:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}