-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.44 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.44 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
{
"name": "phenixphp/sqlite",
"description": "Asynchronous SQLite 3 client for PHP based on Amp.",
"license": "MIT",
"homepage": "https://github.com/phenixphp/sqlite",
"authors": [
{
"name": "Omar Barbosa",
"email": "contacto@omarbarbosa.com"
}
],
"require": {
"php": "^8.2",
"ext-sqlite3": "*",
"amphp/amp": "^3",
"amphp/parser": "^1.1",
"amphp/pipeline": "^1",
"amphp/sql": "^2",
"amphp/sql-common": "^2",
"amphp/parallel": "^2.3"
},
"require-dev": {
"amphp/process": "^2",
"amphp/file": "^3",
"phpunit/phpunit": "^9",
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "^2",
"phpbench/phpbench": "^1.2.6",
"phpstan/phpstan": "^2.1",
"symfony/var-dumper": "^7.4"
},
"autoload": {
"psr-4": {
"Phenix\\Sqlite\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "XDEBUG_MODE=off vendor/bin/phpunit --colors=always",
"test:debug": "vendor/bin/phpunit --colors=always",
"test:coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --colors=always",
"format": "vendor/bin/php-cs-fixer fix",
"analyze": "vendor/bin/phpstan --memory-limit=1G"
}
}