Skip to content

Commit 03a02b4

Browse files
chore: remove php-http/multipart-stream-builder as a required dependency
1 parent 7361bd6 commit 03a02b4

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

composer.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"$schema": "https://getcomposer.org/schema.json",
33
"autoload": {
4-
"files": [
5-
"src/Core.php",
6-
"src/Client.php"
7-
],
4+
"files": ["src/Core.php", "src/Client.php"],
85
"psr-4": {
96
"Scrapegraphai\\": "src/"
107
}
@@ -26,13 +23,12 @@
2623
"preferred-install": "dist",
2724
"sort-packages": true
2825
},
29-
"license": "APACHE-2.0",
3026
"description": "Scrapegraphai PHP SDK",
27+
"license": "APACHE-2.0",
3128
"name": "org-placeholder/scrapegraphai",
3229
"require": {
3330
"php": "^8.1",
3431
"php-http/discovery": "^1",
35-
"php-http/multipart-stream-builder": "^1",
3632
"psr/http-client": "^1",
3733
"psr/http-client-implementation": "^1",
3834
"psr/http-factory-implementation": "^1",

src/Core/Concerns/SdkModel.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,6 @@ public function jsonSerialize(): array
203203
}
204204

205205
/**
206-
* @internal
207-
*
208206
* @param array<string, mixed> $data
209207
*/
210208
public static function fromArray(array $data): self

src/Core/Contracts/BaseStream.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
use Scrapegraphai\Core\Conversion\Contracts\ConverterSource;
1111

1212
/**
13+
* @internal
14+
*
1315
* @template TInner
1416
*
1517
* @extends \IteratorAggregate<int, TInner>

src/Core/Conversion/UnionOf.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Scrapegraphai\Core\Conversion\Contracts\Converter;
1010
use Scrapegraphai\Core\Conversion\Contracts\ConverterSource;
1111

12+
/**
13+
* @internal
14+
*/
1215
final class UnionOf implements Converter
1316
{
1417
/**

0 commit comments

Comments
 (0)