-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.01 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
{
"name": "metarush/data-access",
"type": "library",
"description": "A generic data access layer for basic CRUD operations. Can act as a layer between database, repositories, and services. Minimal boilerplate for rapid development. Implicit inline binding for SQL queries.",
"keywords": [
"php",
"data access layer",
"pdo"
],
"license": "MIT",
"authors": [
{
"name": "metarush/data-access contributors",
"homepage": "https://github.com/metarush/data-access/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"MetaRush\\DataAccess\\": "src"
}
},
"require": {
"php": ">=7.4",
"atlas/query": "1.*",
"psr/log": "1.* || 2.* || 3.*"
},
"require-dev": {
"phpstan/phpstan": "2.*",
"phpunit/phpunit": "9.*",
"monolog/monolog": "2.*",
"roave/security-advisories": "dev-master"
}
,
"config": {
"process-timeout": 0
}
}