-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 2.2 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
{
"name": "syslogic/php-cloudfunctions-quickstart",
"description": "PHP Cloud Functions Quickstart",
"minimum-stability": "stable",
"type": "project",
"license": "MIT",
"authors": [{
"name": "Martin Zeitler",
"homepage": "https://github.com/syslogic"
}],
"support": {
"docs": "https://github.com/syslogic/php-cloudfunctions-quickstart/README.md",
"issues": "https://github.com/syslogic/php-cloudfunctions-quickstart/issues",
"source": "https://github.com/syslogic/php-cloudfunctions-quickstart"
},
"funding": [{
"type": "github",
"url": "https://github.com/sponsors/syslogic"
}, {
"type": "paypal",
"url": "https://www.paypal.me/syslogic"
}],
"scripts": {
"docs": "phpDocumentor.phar",
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration phpunit.xml --testsuite main",
"start": [ "Composer\\Config::disableProcessTimeout", "FUNCTION_TARGET=on_https php -S localhost:${PORT:-8081} vendor/bin/router.php" ],
"coverage_linux": "export XDEBUG_MODE=coverage && vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration coverage.xml --testsuite main",
"coverage_windows": "setlocal xdebug.mode=coverage && %cd%/vendor/bin/phpunit --bootstrap vendor/autoload.php --configuration coverage.xml --testsuite main"
},
"scripts-descriptions": {
"docs": "Generate docs",
"test": "Run PHPunit tests",
"start": "Call function on_https",
"coverage_linux": "Run PHPUnit tests with code coverage on Linux",
"coverage_windows": "Run PHPUnit tests with code coverage on Windows"
},
"repositories": [],
"require": {
"php": ">= 8.0",
"ext-json": "*",
"ext-curl": "*",
"phpseclib/phpseclib": "^3.0.43",
"google/cloud-functions-framework": "^v1.3.0",
"google/cloud-storage": "^v1.45.0",
"google/cloud-logging": "^1.31.3",
"guzzlehttp/psr7": "^2.7.0"
},
"require-dev": {
"google/cloud-tools": "^0.14.0",
"jetbrains/phpstorm-attributes": "^1.1",
"phpunit/php-code-coverage": "^9.2.31",
"phpunit/phpunit": "^9.6.20"
},
"autoload": {
"psr-4": {
"CloudFunctions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CloudFunctions\\Test\\": "tests"
}
}
}