-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 850 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 850 Bytes
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
{
"name": "nimbly/activeresource",
"description": "Use a RESTful resource based API like a database",
"keywords": [
"rest",
"api",
"php",
"model",
"resource",
"database",
"activerecord",
"active",
"record"
],
"license": "MIT",
"authors": [
{
"name": "Brent Scheffler",
"email": "brent@brentscheffler.com"
}
],
"autoload": {
"psr-4": {
"ActiveResource\\": "src/"
}
},
"require": {
"php": ">=7.3|^8.0",
"guzzlehttp\/guzzle": "^6.2",
"optimus\/onion": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"phpunit\/phpunit": "^9",
"vimeo/psalm": "^4.11"
}
}