forked from smindel/silverstripe-sqlite3
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.7 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.7 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "silverstripe/sqlite3",
"description": "Adds SQLite3 support to SilverStripe",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"sqlite3",
"database"
],
"authors": [
{
"name": "Ingo Schommer",
"email": "ingo@silverstripe.com"
},
{
"name": "Sean Harvey",
"email": "sean@silverstripe.com"
}
],
"require": {
"silverstripe/framework": "^5",
"silverstripe/vendor-plugin": "^2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^9.5",
"silverstripe/versioned": "^2"
},
"autoload": {
"psr-4": {
"SilverStripe\\SQLite\\": "code/"
}
},
"scripts": {
"lint": "phpcs",
"lint-clean": "phpcbf",
"test": "@php bin/run.php DB=SQLITE vendor/bin/phpunit --testsuite framework",
"test-local": "@php bin/run.php DB=SQLITE vendor/bin/phpunit --testsuite sqlite3",
"test-orm": "@php bin/run.php DB=SQLITE vendor/bin/phpunit vendor/silverstripe/framework/tests/php/ORM/",
"test-orm-stop": "@php bin/run.php DB=SQLITE vendor/bin/phpunit --stop-on-failure vendor/silverstripe/framework/tests/php/ORM/",
"test-eager-loading": "@php bin/run.php DB=SQLITE vendor/bin/phpunit vendor/silverstripe/framework/tests/php/ORM/DataListEagerLoadingTest.php",
"test-all": "@php bin/run.php DB=SQLITE vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}