master 1.1
yangbowen 1 year ago
parent 8b1b10caa3
commit dcefc84b3a
  1. 8
      .idea/.gitignore
  2. 14
      .idea/deployment.xml
  3. 8
      .idea/modules.xml
  4. 11
      .idea/phpunit.xml
  5. 6
      README.md
  6. 2
      composer.json
  7. 2
      git_push.sh
  8. 4
      lib/Configuration.php

8
.idea/.gitignore vendored

@ -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

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PublishConfigData" remoteFilesAllowedToDisappearOnAutoupload="false">
<serverData>
<paths name="docker">
<serverdata>
<mappings>
<mapping local="$PROJECT_DIR$" web="/" />
</mappings>
</serverdata>
</paths>
</serverData>
</component>
</project>

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/php-sdk.iml" filepath="$PROJECT_DIR$/.idea/php-sdk.iml" />
</modules>
</component>
</project>

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PHPUnit">
<option name="directories">
<list>
<option value="$PROJECT_DIR$/test/Api" />
<option value="$PROJECT_DIR$/test/Model" />
</list>
</option>
</component>
</project>

@ -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`

@ -1,5 +1,5 @@
{
"name": "openapi/low-carbon-platform-php",
"name": "tsl3060/low-carbon-platform",
"version": "1.0",
"description": "碳丝路数据开放平台",
"keywords": [

@ -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

@ -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;

Loading…
Cancel
Save