-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.61 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.61 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
{
"name": "phpnomad/sqlite-integration",
"description": "PDO+SQLite implementation of phpnomad/db strategies. Pairs with phpnomad/mysql-integration so entity classes and repositories are portable between MySQL (server) and SQLite (desktop/local).",
"type": "library",
"keywords": [
"phpnomad",
"sqlite",
"pdo",
"database",
"datastore",
"desktop",
"nativephp"
],
"homepage": "https://github.com/phpnomad/sqlite-integration",
"license": "MIT",
"authors": [
{
"name": "Alex Standiford",
"email": "alex@standiford.us"
}
],
"require": {
"php": "^8.3",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"phpnomad/db": "^2.0",
"phpnomad/datastore": "^2.0",
"phpnomad/di": "^2.0",
"phpnomad/facade": "^1.0",
"phpnomad/loader": "^1.0 || ^2.0",
"phpnomad/singleton": "^1.0",
"phpnomad/utils": "^1.0"
},
"require-dev": {
"phpnomad/di-container": "^1.0",
"phpnomad/tests": "^0.1.0 || ^0.3.0 || ^0.4.0",
"phpunit/phpunit": "^11"
},
"autoload": {
"psr-4": {
"PHPNomad\\SQLite\\Integration\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"PHPNomad\\SQLite\\Integration\\Tests\\": "tests/"
}
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}