-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.29 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.29 KB
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
{
"name": "sqlitecloud/sqlitecloud",
"description": "A PHP package for working with SQLite databases in the cloud.",
"type": "library",
"license": "MIT",
"keywords": [
"sqlitecloud",
"sqlite",
"database"
],
"homepage": "https://sqlitecloud.io/",
"autoload": {
"psr-4": {
"SQLiteCloud\\": "src/"
}
},
"minimum-stability": "alpha",
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5|^7.5|^8.5",
"vlucas/phpdotenv": ">=4.3",
"friendsofphp/php-cs-fixer": ">=2.19",
"squizlabs/php_codesniffer": "^3.10",
"phpmd/phpmd": "^2.15"
},
"scripts": {
"post-install-cmd": [
"pre-commit install"
],
"cs": "@php phpcs --standard=PSR12 --runtime-set ignore_warnings_on_exit 1 ./src ./tests",
"csfixer": "@php php-cs-fixer fix --config=.php-cs-fixer.php ./src ./tests",
"csfixer-ci": "@php php-cs-fixer fix --config=.php-cs-fixer.php -v --dry-run --using-cache=no ./src ./tests",
"phpmd": "@php phpmd src/ text phpmd-ruleset.xml",
"test-suite": "@php phpunit -c phpunit.xml ./tests",
"test-suite-codecov": "@php phpunit -c phpunit.xml --coverage-clover coverage.xml ./tests"
}
}