-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 941 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 941 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
42
43
44
{
"name": "neat/object",
"description": "Neat Object component",
"license": "MIT",
"type": "library",
"keywords": [
"Object",
"ORM"
],
"authors": [
{
"name": "Bauke van der Woude",
"email": "baukevanderwoude@hotmail.nl"
},
{
"name": "Anna van Biemen",
"email": "annavanbiemen@gmail.com"
}
],
"require": {
"php": "^7.2 || ^8.0",
"neat/database": "^1.5",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"ext-sqlite3": "*",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"autoload": {
"psr-4": {
"Neat\\Object\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"Neat\\Object\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.12.x-dev"
}
}
}