-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.5 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
{
"name": "mgcosta/spanner-orm-builder",
"type": "library",
"description": "Google Spanner ORM With Query Builder",
"license": "MIT",
"authors": [
{
"name": "Miguel Costa",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"ext-grpc": "*",
"grpc/grpc": "^1.36",
"google/cloud-spanner": "^1.36",
"ramsey/uuid": "^4.1.1",
"illuminate/collections": "^8.37.0"
},
"require-dev": {
"ext-xdebug": "*",
"mockery/mockery": "^1.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9",
"sebastian/phpcpd": "^5.0",
"squizlabs/php_codesniffer": "^3.5",
"codeception/c3": "^2.4",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2"
},
"config": {
"platform": {
"php": "7.3"
},
"vendor-dir": "vendor"
},
"autoload": {
"psr-4": {
"MgCosta\\Spanner\\": "src/Spanner"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"phpcpd": "phpcpd -vvv --min-tokens=40 src",
"phpcs": "phpcs -p src --standard=PSR12 --standard=PHPCompatibility",
"phpcs-fix": "phpcbf --standard=PSR12"
}
}