-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
48 lines (48 loc) · 1.44 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
{
"name": "google/cloud-tools",
"description": "PHP tools for Google Cloud Platform",
"keywords": ["test", "appengine", "gcp"],
"homepage": "https://github.com/GoogleCloudPlatform/php-tools",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Takashi Matsuo",
"email": "[email protected]",
"homepage": "https://wp.gaeflex.ninja/"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "~7.0",
"symfony/browser-kit": "^5.0",
"symfony/console": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/process": "^5.0",
"twig/twig": "~3.0"
},
"bin": [
"src/Utils/Flex/flex_exec",
"src/Utils/WordPress/wp-gae",
"scripts/dump_credentials.php",
"scripts/install_test_deps.sh"
],
"autoload": {
"psr-4": {
"Google\\Cloud\\Fixers\\": "src/Fixers/",
"Google\\Cloud\\TestUtils\\": "src/TestUtils/",
"Google\\Cloud\\Utils\\": "src/Utils/"
}
},
"require-dev": {
"google/cloud-core": "^1.20",
"google/gax": "^1.0.0",
"paragonie/random_compat": ">=2",
"phpunit/phpunit": "^9",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.62",
"google/cloud-dlp": "^1.10",
"google/cloud-storage": "^1.33",
"google/cloud-secret-manager": "^1.12"
}
}