-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 907 Bytes
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 907 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": "michel/paper-orm",
"description": "PaperORM is a lightweight Object-Relational Mapping (ORM) library ",
"type": "library",
"license": "MPL-2.0",
"authors": [
{
"name": "Michel.F"
}
],
"autoload": {
"psr-4": {
"Michel\\PaperORM\\": "src",
"Test\\Michel\\PaperORM\\": "tests"
},
"files": [
"functions/helpers.php"
]
},
"require": {
"php": ">=7.4",
"ext-pdo": "*",
"ext-json": "*",
"ext-ctype": "*",
"ext-iconv": "*",
"michel/php-sql-mapper": "^1.0",
"michel/console": "^1.0",
"michel/michel-package-starter": "^1.0",
"michel/filesystem": "^1.0",
"michel/psr14-event-dispatcher": "^1.0",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"michel/unitester": "^1.0.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}