-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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
{
"name": "somnambulist/api-client",
"type": "library",
"description": "A library to help ease creating API integrations",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-json": "*",
"beberlei/assert": "^3.3",
"pagerfanta/pagerfanta": "^3.5",
"psr/log": "^1|^2|^3",
"somnambulist/attribute-model": "^3.0",
"somnambulist/collection": "^5.5",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/routing": "^6.4|^7.0",
"symfony/string": "^6.4|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"somnambulist/domain": "^6.0",
"symfony/framework-bundle": "^6.4",
"symfony/phpunit-bridge": "^6.4",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"Somnambulist\\Components\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Somnambulist\\Components\\ApiClient\\Tests\\": "tests/"
}
}
}