-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
63 lines (63 loc) · 1.31 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pecee/pixie",
"description": "Lightweight, fast query-builder for PHP based on Laravel Eloquent but with less overhead.",
"homepage": "https://github.com/skipperbent/pecee-pixie",
"keywords": [
"pecee",
"querybuilder",
"eloquent",
"pixie",
"query builder",
"sql",
"database",
"mysql",
"postgresql",
"sqlite"
],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Simon Sessingø",
"email": "simon.sessingoe@gmail.com",
"role": "Developer"
},
{
"name": "Muhammad Usman",
"email": "hi@usman.it",
"role": "Developer"
},
{
"name": "Pavel Puchkin",
"email": "i@neoascetic.me",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1",
"ext-pdo_sqlite": "*",
"phpstan/phpstan": "^0",
"phpstan/phpstan-phpunit": "^0",
"phpstan/phpstan-deprecation-rules": "^0",
"phpstan/phpstan-strict-rules": "^0"
},
"suggest": {
"ext-pdo_sqlite": "Add extension for SQLite support"
},
"autoload": {
"psr-4": {
"Pecee\\Pixie\\": "src/Pecee/Pixie/"
}
},
"scripts": {
"test": [
"@phpstan"
],
"phpstan": "phpstan analyse"
}
}