Skip to content

Commit a6a7c51

Browse files
Merge branch 'master' into feat-clientside-id-gen
2 parents 43ca1b7 + c9c07e8 commit a6a7c51

File tree

265 files changed

+7212
-3805
lines changed

Some content is hidden

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

265 files changed

+7212
-3805
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php-version: ['8.2']
16-
sdk: [Android11Java8, Android11Java11, Android12Java8, Android12Java11, CLINode16, CLINode18, DartBeta, DartStable, Deno1193, Deno1303, DotNet60, DotNet70, FlutterStable, FlutterBeta, Go112, Go118, KotlinJava8, KotlinJava11, KotlinJava17, Node12, Node14, Node16, PHP74, PHP80, Python38, Python39, Python310, Ruby27, Ruby30, Ruby31, AppleSwift55, Swift55, WebChromium, WebNode]
16+
sdk: [Android5Java17, Android14Java17, CLINode16, CLINode18, DartBeta, DartStable, Deno1193, Deno1303, DotNet60, DotNet70, FlutterStable, FlutterBeta, Go112, Go118, KotlinJava8, KotlinJava11, KotlinJava17, Node16, Node18, Node20, PHP74, PHP80, Python38, Python39, Python310, Ruby27, Ruby30, Ruby31, AppleSwift56, Swift56, WebChromium, WebNode]
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323

@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Checkout code
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959

6060
- name: Setup PHP with PECL extension
6161
uses: shivammathur/setup-php@v2
@@ -67,4 +67,4 @@ jobs:
6767
run: composer install
6868

6969
- name: Lint
70-
run: composer lint
70+
run: composer lint

composer.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"description": "Appwrite PHP library for generating API SDKs for multiple programming languages and platforms",
44
"type": "library",
55
"license": "MIT",
6+
"minimum-stability": "dev",
7+
"prefer-stable": true,
68
"authors": [
79
{
810
"name": "Eldad Fux",
@@ -28,14 +30,15 @@
2830
"ext-curl": "*",
2931
"ext-mbstring": "*",
3032
"ext-json": "*",
31-
"twig/twig": "^3.4.1",
32-
"matthiasmullie/minify": "^1.3.68"
33+
"twig/twig": "v3.8.*",
34+
"matthiasmullie/minify": "1.3.*"
3335
},
3436
"require-dev": {
35-
"phpunit/phpunit": "^9.5.21",
36-
"brianium/paratest": "^6.4",
37-
"squizlabs/php_codesniffer": "^3.6"
37+
"phpunit/phpunit": "10.5.*",
38+
"brianium/paratest": "v7.4.*",
39+
"squizlabs/php_codesniffer": "3.9.*"
3840
},
39-
"minimum-stability": "dev",
40-
"prefer-stable": true
41+
"platform": {
42+
"php": "8.2"
43+
}
4144
}

0 commit comments

Comments
 (0)