-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 900 Bytes
/
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
{
"name": "abdulelahragih/querybuilder",
"description": "Fast, lightweight and simple SQL query builder that does not depend on any third-party library besides PDO to execute the queries in a safe way. The syntax is inspired by Laravel Query Builder.",
"type": "library",
"license": "GPL-3.0-only",
"autoload": {
"psr-4": {
"Abdulelahragih\\QueryBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Abdulelahragih\\QueryBuilder\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Abdulelah Ragih",
"email": "abdulelah.ggar@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.3"
},
"scripts": {
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:all": [
"@test"
]
}
}