-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (71 loc) · 1.78 KB
/
composer.json
File metadata and controls
82 lines (71 loc) · 1.78 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "maatify/data-adapters",
"type": "library",
"license": "MIT",
"description": "DI-first infrastructure adapters providing explicit ownership wrappers around real database and cache drivers.",
"keywords": [
"maatify",
"data-adapters",
"dependency-injection",
"pdo",
"doctrine-dbal",
"redis",
"predis",
"mongodb",
"infrastructure",
"di-boundary"
],
"homepage": "https://www.maatify.dev",
"authors": [
{
"name": "Mohamed Abdulalim",
"email": "mohamed@maatify.dev",
"homepage": "https://www.maatify.dev",
"role": "Lead Architect"
}
],
"require": {
"php": ">=8.2",
"maatify/common": "^2.0"
},
"suggest": {
"ext-pdo": "Required to use MySQLPDOAdapter",
"doctrine/dbal": "Required to use MySQLDBALAdapter",
"ext-redis": "Required to use RedisAdapter (ext-redis)",
"predis/predis": "Required to use RedisPredisAdapter",
"mongodb/mongodb": "Required to use MongoDatabaseAdapter"
},
"autoload": {
"psr-4": {
"Maatify\\DataAdapters\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maatify\\DataAdapters\\Tests\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0",
"mongodb/mongodb": "^2.0",
"predis/predis": "^2.3",
"doctrine/dbal": "^4.3"
},
"scripts": {
"test": "phpunit --configuration phpunit.no-coverage.xml.dist",
"test:coverage": "XDEBUG_MODE=coverage phpunit --configuration phpunit.xml.dist",
"analyse": "phpstan analyse src --level=max",
"format": "php-cs-fixer fix",
"ci": [
"@analyse",
"@test"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}