-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.22 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
{
"name": "anteris-dev/itglue",
"description": "A Laravel-like ORM for the IT Glue API.",
"license": "MIT",
"autoload": {
"psr-4": {
"Anteris\\ITGlue\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Anteris\\Tests\\ITGlue\\": "./tests"
}
},
"config": {
"sort-packages": true
},
"require": {
"illuminate/collections": "^8.0",
"jenssegers/model": "^1.0",
"nesbot/carbon": "^2.0",
"php-http/cache-plugin": "^1.0",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-client-implementation": "^1.0",
"spatie/data-transfer-object": "^2.0"
},
"require-dev": {
"cache/filesystem-adapter": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/psr7": "^1.0",
"laminas/laminas-diactoros": "^2.0",
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^9.0",
"psr/http-client": "^1.0",
"spatie/ray": "^1.0",
"vimeo/psalm": "^4.0"
}
}