From dcefc84b3a2b5b2bbd6c071ecd7d140b31f21f8a Mon Sep 17 00:00:00 2001 From: yangbowen Date: Tue, 2 Apr 2024 11:03:30 +0800 Subject: [PATCH] 1.0 --- .idea/.gitignore | 8 -------- .idea/deployment.xml | 14 -------------- .idea/modules.xml | 8 -------- .idea/phpunit.xml | 11 ----------- README.md | 6 +++--- composer.json | 2 +- git_push.sh | 2 +- lib/Configuration.php | 4 ++-- 8 files changed, 7 insertions(+), 48 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/deployment.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/phpunit.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/deployment.xml b/.idea/deployment.xml deleted file mode 100644 index ee0a6e0..0000000 --- a/.idea/deployment.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index dd05ab0..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/phpunit.xml b/.idea/phpunit.xml deleted file mode 100644 index 422c581..0000000 --- a/.idea/phpunit.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/README.md b/README.md index 7a66e14..beec9c1 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ PHP 7.4 及更高版本。 "repositories": [ { "type": "vcs", - "url": "https://git.tsl3060.com/openapi/low-carbon-platform.git" + "url": "https://git.tsl3060.com/tsl3060/low-carbon-platform.git" } ], "require": { - "openapi/low-carbon-platform": "*@dev" + "tsl3060/low-carbon-platform": "*@dev" } } ``` @@ -171,4 +171,4 @@ vendor/bin/phpunit ## 关于 - API version: `0.4.8` - - Package version: `0.4.31` + - Package version: `1.0` diff --git a/composer.json b/composer.json index 2431bcb..abaa519 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "openapi/low-carbon-platform-php", + "name": "tsl3060/low-carbon-platform", "version": "1.0", "description": "碳丝路数据开放平台", "keywords": [ diff --git a/git_push.sh b/git_push.sh index a66d737..e1b9ee3 100644 --- a/git_push.sh +++ b/git_push.sh @@ -14,7 +14,7 @@ if [ "$git_host" = "" ]; then fi if [ "$git_user_id" = "" ]; then - git_user_id="openapi" + git_user_id="tsl3060" echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" fi diff --git a/lib/Configuration.php b/lib/Configuration.php index 99dd3d6..2f49e11 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -100,7 +100,7 @@ class Configuration * * @var string */ - protected $userAgent = 'OpenAPI-Generator/0.4.31/PHP'; + protected $userAgent = 'OpenAPI-Generator/1.0/PHP'; /** * Debug switch (default set to false) @@ -524,7 +524,7 @@ class Configuration $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' The version of the OpenAPI document: 0.4.8' . PHP_EOL; - $report .= ' SDK Package Version: 0.4.31' . PHP_EOL; + $report .= ' SDK Package Version: 1.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report;