-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
45 lines (45 loc) · 1.12 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
{
"name": "mehedimi/wp-query-builder",
"description": "A database query builder for WordPress",
"license": "MIT",
"autoload": {
"psr-4": {
"Mehedi\\WPQueryBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mehedi\\WPQueryBuilderTests\\": "tests/"
}
},
"authors": [
{
"name": "Mehedi Hasan",
"email": "[email protected]",
"homepage": "https://mehedi.im",
"role": "Developer"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.4",
"mockery/mockery": "^1.5",
"vlucas/phpdotenv": "^5.4",
"fakerphp/faker": "^1.20",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-mockery": "^1.1",
"laravel/pint": "^1.15"
},
"require": {
"ext-mysqli": "*",
"php": ">=5.6"
},
"scripts": {
"test": "phpunit --testdox",
"test:units": "phpunit --filter=Units --testdox",
"test:features": "RUN_FEATURE_TEST=on phpunit --filter=Features --testdox",
"check": "vendor/bin/phpstan analyse -c phpstan.neon",
"pre-commit": "composer check && composer test",
"fmt": "./vendor/bin/pint"
}
}