-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.81 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": "toiletevolution/toiletevolution-server",
"description": "ToiletEvolution Server for GAE",
"keywords": ["iot", "toilet"],
"homepage": "http://www.toiletevolution.space",
"license": "MIT",
"authors": [
{
"name": "Kenichiro Kishida",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2.0",
"slim/slim": "^4.12",
"slim/php-view": "^2.0",
"monolog/monolog": "^3.5",
"tomwalder/php-gds": "^6.1",
"tuupola/slim-basic-auth": "^3.3",
"nesbot/carbon": "^2.72",
"league/oauth2-client": "2.7.0",
"league/oauth2-google": "4.0.1",
"akrabat/rka-slim-session-middleware": "^3.0",
"slim/csrf": "^0.7.0",
"aurmil/slim3-csrf-utilities": "^1.0",
"justinrainbow/json-schema": "^5.2.12",
"netresearch/jsonmapper": "^4.2",
"google/appengine-php-sdk": "2.2.0",
"slim/psr7": "^1.6",
"php-di/php-di": "^7.0",
"google/cloud-storage": "^1.36",
"google/cloud-datastore": "^1.26"
},
"autoload": {
"psr-4": {
"ToiletEvolution\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"helmich/phpunit-psr7-assert": "^4.4.0",
"m6web/redis-mock": "^5.6"
},
"autoload-dev": {
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php",
"vendor/helmich/phpunit-psr7-assert/src/Functions.php"
],
"psr-4": {
"Test\\ToiletEvolution\\": "tests\\Case\\"
}
},
"include-path": [
"vendor/google/appengine-php-sdk"
],
"scripts": {
"t": "phpunit"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}