Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
485cd6a
feat: starts client adapter work
JasonTheAdams Aug 30, 2025
182e32a
Merge branch 'trunk' into http-adapter
JasonTheAdams Sep 2, 2025
51a5130
Merge branch 'trunk' into http-adapter
JasonTheAdams Sep 9, 2025
c06c468
refactor: rename file to use PSR-4 autoloading
JasonTheAdams Sep 9, 2025
845407a
chore: adds WordPress stubs to PHPStan
JasonTheAdams Sep 9, 2025
d0b9208
fix: corrects type issues
JasonTheAdams Sep 9, 2025
d7ef812
chore: cleans up phpstan file
JasonTheAdams Sep 9, 2025
f7ec38f
feat: adds nyholm/psr7 package for psr17 factory
JasonTheAdams Sep 9, 2025
8010654
feat: adds HTTPlug discovery strategy
JasonTheAdams Sep 9, 2025
4e0247f
feat: adds PSR17 discoverability
JasonTheAdams Sep 9, 2025
3998eb7
refactor: renames class
JasonTheAdams Sep 22, 2025
581de9e
refactor: removes stream args
JasonTheAdams Sep 22, 2025
5c66fde
feat: updates to PHP AI Client 0.2.0
JasonTheAdams Oct 21, 2025
4e80b89
feat: implements ClientWithOptionsInterface
JasonTheAdams Oct 21, 2025
de7de24
refactor: switches to using NetworkException
JasonTheAdams Oct 21, 2025
7943ed6
refactor: cleans up unnecessary conditions code
JasonTheAdams Nov 5, 2025
7c5d022
Merge branch 'trunk' into http-adapter
felixarntz Nov 7, 2025
990111a
Use consistent YAML formatting in PHPStan config.
felixarntz Nov 7, 2025
acd0e8b
Fix PHPStan errors after updates.
felixarntz Nov 7, 2025
a68e34c
Temp folder rename to fix incorrect casing.
felixarntz Nov 7, 2025
bf54101
Fix folder name.
felixarntz Nov 7, 2025
167aeb6
Fix PHP warning.
felixarntz Nov 7, 2025
c50d84b
Fix bug in HTTP client discovery implementation.
felixarntz Nov 7, 2025
a8aaf95
Wire up HTTP client discovery implementation.
felixarntz Nov 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ insert_final_newline = true
trim_trailing_whitespace = true
indent_style = tab

[*.{yml,yaml}]
[*.{yml,yaml,neon.dist}]
indent_style = space
indent_size = 2
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"require": {
"php": ">=7.4",
"ext-json": "*",
"nyholm/psr7": "^1.5",
"wordpress/php-ai-client": "^0.2"
},
"require-dev": {
Expand All @@ -39,7 +40,7 @@
"phpstan/phpstan": "^1.10 | ^2.1",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7",
"szepeviktor/phpstan-wordpress": "^1.3",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
Expand All @@ -59,6 +60,6 @@
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpstan": "phpstan analyze --memory-limit=1024M"
"phpstan": "phpstan analyze --memory-limit=512M"
}
}
231 changes: 112 additions & 119 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading