-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.05 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
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
{
"name": "dnj/phpvmomi",
"description": "PHP VMware Managed Object Management Interface",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"dnj\\phpvmomi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"dnj\\phpvmomi\\Tests\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-openssl": "*",
"ext-soap": "*",
"ext-curl": "*",
"dnj/local-filesystem": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.85",
"friendsofphp/php-cs-fixer": "^3.1",
"dnj/tmp-filesystem": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.3"
},
"scripts": {
"test:types": "vendor/bin/phpstan analyse",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:types",
"@test:phpunit",
"@test:codestyle"
]
}
}