-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.16 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.16 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
41
42
43
44
45
{
"name": "brianfreytag/ultipro-sdk-php",
"description": "Ultipro SDK for PHP (Unofficial)",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": ["ultipro","ultimate","api","php","humanresources","hr","ultipro php sdk"],
"authors": [
{
"name": "Brian Freytag",
"email": "me@brianfreytag.com"
}
],
"support": {
"issues": "https://github.com/brianfreytag/ultipro-sdk-php/issues"
},
"require": {
"php": "^7.4 || ^8.0",
"guzzlehttp/guzzle": "^6.3|^7",
"guzzlehttp/psr7": "^1.5|^2",
"guzzlehttp/promises": "^1.3|^2",
"ext-pcre": "*",
"ext-json": "*",
"ext-xml": "*",
"ext-soap": "*",
"ext-simplexml": "*",
"symfony/property-info": "^5.4 || ^6.0 || ^7.0 || ^8.0"
},
"require-dev": {
"ext-openssl": "*",
"ext-dom": "*",
"ext-pcntl": "*",
"phpunit/phpunit": "^8.1"
},
"autoload": {
"psr-4": {
"Ultipro\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ultipro\\Test\\": "tests/"
}
}
}