Skip to content

Commit eae1aef

Browse files
committed
bugfix
1 parent a95f454 commit eae1aef

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ These are all the configuration options and their default value between brackets
6666
- "database": Database the connecting is made to (no default)
6767
- "middlewares": List of middlewares to load ("cors")
6868
- "controllers": List of controllers to load ("records,columns,cache,openapi")
69-
- "openApiBase": OpenAPI info ("{"info":{"title":"JAVA-CRUD-API","version":"1.0.0"}}")
69+
- "openApiBase": OpenAPI info ("{"info":{"title":"PHP-CRUD-API","version":"1.0.0"}}")
7070
- "cacheType": "TempFile" (default), "Redis", "Memcache", "Memcached" or "NoCache"
7171
- "cachePath": Path/address of the cache (defaults to system's "temp" directory)
7272
- "cacheTime": Number of seconds the cache is valid (10)

api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4775,7 +4775,7 @@ class Config
47754775
'cachePath' => '',
47764776
'cacheTime' => 10,
47774777
'debug' => false,
4778-
'openApiBase' => '{"info":{"title":"JAVA-CRUD-API","version":"1.0.0"}}',
4778+
'openApiBase' => '{"info":{"title":"PHP-CRUD-API","version":"1.0.0"}}',
47794779
];
47804780

47814781
private function getDefaultDriver(array $values): String

src/Tqdev/PhpCrudApi/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Config
1616
'cachePath' => '',
1717
'cacheTime' => 10,
1818
'debug' => false,
19-
'openApiBase' => '{"info":{"title":"JAVA-CRUD-API","version":"1.0.0"}}',
19+
'openApiBase' => '{"info":{"title":"PHP-CRUD-API","version":"1.0.0"}}',
2020
];
2121

2222
private function getDefaultDriver(array $values): String

0 commit comments

Comments
 (0)