Skip to content

Commit 40d768d

Browse files
authored
Merge pull request #3 from RusticiSoftware/version_bump
Remove unneeded files and regenerate library from updated spec.
2 parents 4c0e500 + f36a63b commit 40d768d

File tree

227 files changed

+7068
-37368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+7068
-37368
lines changed

.php_cs

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
<?php
22

3-
return PhpCsFixer\Config::create()
3+
return Symfony\CS\Config::create()
4+
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
45
->setUsingCache(true)
5-
->setRules([
6-
'@PSR2' => true,
7-
'ordered_imports' => true,
8-
'phpdoc_order' => true,
9-
'array_syntax' => [ 'syntax' => 'short' ],
10-
'strict_comparison' => true,
11-
'strict_param' => true,
12-
'no_trailing_whitespace' => false,
13-
'no_trailing_whitespace_in_comment' => false,
14-
'braces' => false,
15-
'single_blank_line_at_eof' => false,
16-
'blank_line_after_namespace' => false,
17-
])
18-
->setFinder(
19-
PhpCsFixer\Finder::create()
20-
->exclude('test')
21-
->exclude('tests')
22-
->in(__DIR__)
6+
->fixers(
7+
[
8+
'ordered_use',
9+
'phpdoc_order',
10+
'short_array_syntax',
11+
'strict',
12+
'strict_param'
13+
]
14+
)
15+
->finder(
16+
Symfony\CS\Finder\DefaultFinder::create()
17+
->in(__DIR__)
2318
);

.swagger-codegen-ignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 20 additions & 231 deletions
Large diffs are not rendered by default.

autoload.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,6 @@
99
*
1010
* Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
*
12-
* Licensed under the Apache License, Version 2.0 (the "License");
13-
* you may not use this file except in compliance with the License.
14-
* You may obtain a copy of the License at
15-
*
16-
* http://www.apache.org/licenses/LICENSE-2.0
17-
*
18-
* Unless required by applicable law or agreed to in writing, software
19-
* distributed under the License is distributed on an "AS IS" BASIS,
20-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21-
* See the License for the specific language governing permissions and
22-
* limitations under the License.
2312
*/
2413

2514
/**

composer.json

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,30 @@
11
{
2-
"name": "RusticiSoftware/scormcloud-api-v2-client-php",
2+
"name": "rustici-software/scormcloud-api-v2-client-php",
33
"version": "1.0.0-beta",
44
"description": "",
55
"keywords": [
6-
"swagger",
7-
"php",
8-
"sdk",
9-
"api"
6+
"scorm",
7+
"cloud",
8+
"scormcloud",
9+
"rustici",
10+
"software",
11+
"rusticisoftware"
1012
],
11-
"homepage": "http://swagger.io",
12-
"license": "proprietary",
13+
"homepage": "https://github.com/RusticiSoftware/scormcloud-api-v2-client-php",
14+
"license": "Apache-2.0",
1315
"authors": [
1416
{
15-
"name": "Swagger and contributors",
16-
"homepage": "https://github.com/swagger-api/swagger-codegen"
17+
"name": "Rustici Software",
18+
"homepage": "https://rusticisoftware.com"
1719
}
1820
],
1921
"require": {
20-
"php": ">=5.5",
22+
"php": ">=5.4",
2123
"ext-curl": "*",
2224
"ext-json": "*",
23-
"ext-mbstring": "*",
24-
"guzzlehttp/guzzle": "^6.2"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "^4.8",
28-
"squizlabs/php_codesniffer": "~2.6",
29-
"friendsofphp/php-cs-fixer": "~2.12"
25+
"ext-mbstring": "*"
3026
},
3127
"autoload": {
3228
"psr-4": { "RusticiSoftware\\Cloud\\V2\\" : "src/" }
33-
},
34-
"autoload-dev": {
35-
"psr-4": { "RusticiSoftware\\Cloud\\V2\\" : "test/" }
3629
}
37-
}
30+
}

0 commit comments

Comments
 (0)