Skip to content

Commit 23b2401

Browse files
Merge branch 'master' into feat-fix-function-deploy-windows
2 parents 017b825 + 04de540 commit 23b2401

File tree

212 files changed

+6854
-2635
lines changed

Some content is hidden

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

212 files changed

+6854
-2635
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@
88
.env
99
.envrc
1010
.hatch
11+
1112
# exclude everything
1213
examples/*
14+
tests/tmp
15+
.phpunit.result.cache
1316

1417
# exception to the rule
15-
!examples/.gitkeep
18+
!examples/.gitkeep
19+
1620
**/.DS_Store
1721
templates/swift/example/.build
1822
templates/swift/example/Example.xcodeproj/project.xcworkspace/xcuserdata
1923
templates/swift/example/Example.xcodeproj/xcuserdata
2024
**/xcuserdata
25+
# exclude go checksum files
26+
go.sum

.travis.yml

Lines changed: 32 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,40 @@ os: linux
1212
language: php
1313

1414
php:
15-
- 8.0
15+
- 8.1
1616

1717
env:
18-
- SDK=Android
19-
- SDK=CLI
20-
- SDK=Dart
21-
- SDK=Deno
22-
- SDK=Flutter
23-
- SDK=Kotlin
24-
- SDK=Node
25-
- SDK=PHP
26-
- SDK=Python
27-
- SDK=Ruby
28-
- SDK=SwiftClient
29-
- SDK=SwiftServer
30-
- SDK=Web
18+
- SDK=Android11Java8
19+
- SDK=Android11Java11
20+
- SDK=Android12Java8
21+
- SDK=Android12Java11
22+
- SDK=CLINode14
23+
- SDK=CLINode16
24+
- SDK=DartBeta
25+
- SDK=DartStable
26+
- SDK=Deno1171
27+
- SDK=FlutterStable
28+
- SDK=Go112
29+
- SDK=Go118
30+
- SDK=FlutterBeta
31+
- SDK=KotlinJava8
32+
- SDK=KotlinJava11
33+
- SDK=KotlinJava17
34+
- SDK=Node12
35+
- SDK=Node14
36+
- SDK=Node16
37+
- SDK=PHP74
38+
- SDK=PHP80
39+
- SDK=Python38
40+
- SDK=Python39
41+
- SDK=Python310
42+
- SDK=Ruby27
43+
- SDK=Ruby30
44+
- SDK=Ruby31
45+
- SDK=SwiftClient55
46+
- SDK=SwiftServer55
47+
- SDK=WebChromium
48+
- SDK=WebNode
3149

3250
notifications:
3351
email:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
The SDK Generator uses predefined language settings as [Twig templates](https://twig.symfony.com/) to generate codebases based on different API specs.
1414

15-
Currently, the only spec supported is Swagger 2.0, but we intend to add support for more specification in the near future. This generator is still lacking support for any definition/models specs.
15+
Currently, the only spec supported is Swagger 2.0, but we intend to add support for more specifications in the near future. This generator is still lacking support for any definition/models specs.
1616

1717
## Getting Started
1818

@@ -100,7 +100,7 @@ $sdk->generate(__DIR__ . '/examples/php'); // Generate source code
100100
| Ruby | 2.4+ | [Ruby Style Guide] | GEM | [@eldadfux] [@abnegate] |
101101
| Python | 3.5+ | [PEP8] | PIP | [@eldadfux] [@abnegate] |
102102
| Dart | 2.7+ | [Effective Dart] | pub | [@lohanidamodar] |
103-
| Go | | [Effective Go] | go get | [@panz3r] |
103+
| Go | | [Effective Go] | go get | [@panz3r] [@phaus] |
104104
| .NET | .NET core 3.1 | [C# Coding Conventions]| NuGet | [@komemi] [@TorstenDittmann] |
105105
| D | | | ? | [You?](https://github.com/appwrite/sdk-generator/issues/20) |
106106
| Kotlin | 1.4.31+ | [Kotlin style guide] | Gradle, Maven | [@abnegate] |

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"matthiasmullie/minify": "^1.3"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "^9.5.13"
30+
"phpunit/phpunit": "^9.5.13",
31+
"brianium/paratest": "^6.4"
3132
},
3233
"minimum-stability": "dev",
3334
"prefer-stable": true

0 commit comments

Comments
 (0)