-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
{
"name": "gin0115/pixie-wpdb",
"description": "An adaptation of Pixie (created byusmanhalalit) for WordPress using WPDB over PDO.",
"homepage": "https://github.com/gin0115/pixie-wpdb",
"keywords": [
"query builder",
"sql",
"database",
"wpdb",
"WordPress"
],
"license": "MIT",
"minimum-stability": "dev",
"authors": [{
"name": "Glynn Quelch",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Muhammad Usman",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Pavel Puchkin",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"usmanhalalit/viocon": "1.0.*@dev"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.0",
"phpstan/phpstan": "^1.0",
"szepeviktor/phpstan-wordpress": "^1.0",
"php-stubs/wordpress-stubs": "^5.9.0",
"roots/wordpress": "^5.9",
"wp-phpunit/wp-phpunit": "^5.9",
"symfony/var-dumper": "4.*",
"yoast/phpunit-polyfills": "^1.0.0",
"gin0115/wpunit-helpers": "~1.0.0",
"friendsofphp/php-cs-fixer": "^3",
"phpmyadmin/sql-parser": "dev-master"
},
"autoload": {
"psr-4": {
"Pixie\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {
"Pixie\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --coverage-clover clover.xml --testdox",
"coverage": "phpunit --coverage-html coverage-report --testdox",
"analyse": "vendor/bin/phpstan analyse src static-loader-creator.php -l8",
"all": "composer test && composer analyse && php-cs-fixer fix --diff --dry-run --rules=@PSR12 --show-progress=dots --stop-on-violation",
"fixer": "php-cs-fixer fix --diff --rules=@PSR12 --show-progress=dots",
"lint": "php-cs-fixer fix --diff --dry-run --rules=@PSR12",
"build:loader": "php static-loader-creator.php"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}