-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
43 lines (43 loc) · 1.15 KB
/
composer.json
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
{
"name": "opis/database",
"description": "A database abstraction layer over PDO, that provides a powerful and intuitive query builder, bundled with an easy to use schema builder",
"keywords": ["database", "query", "abstraction layer", "mysql", "postgre", "sql", "sqlite", "query builder", "schema builder"],
"homepage": "https://opis.io/database",
"license": "Apache-2.0",
"authors": [
{
"name": "Marius Sarca",
"email": "[email protected]"
},
{
"name": "Sorin Sarca",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": "^7.0 || ^8.0",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0",
"symfony/yaml": "^3.4"
},
"autoload": {
"psr-4": {
"Opis\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Opis\\Database\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
}
}