-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
78 lines (76 loc) · 3.04 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
73
74
75
76
77
78
{
"name": "cakedc/cakephp-oracle-driver",
"description": "CakePHP 3 Driver for Oracle Database",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"oracle",
"database",
"driver"
],
"homepage": "https://github.com/cakedc/cakephp-oracle-driver",
"license": "MIT",
"authors": [
{
"name": "CakeDC",
"homepage": "http://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/cakedc/cakephp-oracle-driver/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakedc/cakephp-oracle-driver/issues",
"source": "https://github.com/cakedc/cakephp-oracle-driver"
},
"config": {
"preferred-install": "src"
},
"require": {
"php": ">=7.3",
"cakephp/chronos": "*",
"ext-pdo": "*"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.0",
"phpunit/phpunit": "^8.0",
"cakephp/cakephp": "4.0.*"
},
"repositories": [],
"autoload": {
"psr-4": {
"CakeDC\\OracleDriver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\OracleDriver\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"Company\\TestPluginThree\\Test\\": "vendor/cakephp/cakephp/tests/test_app/Plugin/Company/TestPluginThree/tests",
"TestApp\\": "vendor/cakephp/cakephp/tests/test_app/TestApp",
"TestPlugin\\": "vendor/cakephp/cakephp/tests/test_app/Plugin/TestPlugin/src",
"TestPlugin\\Test\\": "vendor/cakephp/cakephp/tests/test_app/Plugin/TestPlugin/tests",
"TestPluginTwo\\": "vendor/cakephp/cakephp/tests/test_app/Plugin/TestPluginTwo/src",
"PluginJs\\": "vendor/cakephp/cakephp/tests/test_app/Plugin/PluginJs/src"
}
},
"scripts": {
"check": [
"@test"
],
"cs-check": "phpcs -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"cs-fix": "phpcbf --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/",
"test": "phpunit --stderr",
"stan": "phpstan analyse src/",
"psalm": "php vendor/psalm/phar/psalm.phar --show-info=false src/ ",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^0.12.0 psalm/phar:^3.7 && mv composer.backup composer.json",
"stan-rebuild-baseline": "phpstan analyse --configuration phpstan.neon --error-format baselineNeon src/ > phpstan-baseline.neon",
"psalm-rebuild-baseline": "php vendor/psalm/phar/psalm.phar --show-info=false --set-baseline=psalm-baseline.xml src/",
"rector": "rector process src/",
"rector-setup": "cp composer.json composer.backup && composer require --dev rector/rector:^0.7 && mv composer.backup composer.json",
"single-test": "phpunit --stderr ",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
}
}