Nomad changes
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s

This commit is contained in:
Henrik Jess Nielsen
2026-06-01 23:40:55 +02:00
parent 72b1a0a6ed
commit b4c07d3693
5723 changed files with 1130655 additions and 0 deletions

22
e2e/php.backup/composer.json generated Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "kreuzberg-dev/e2e-php",
"description": "E2e tests for PHP bindings",
"type": "project",
"require-dev": {
"phpunit/phpunit": "^13.1",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"Kreuzberg\\": "../../packages/php/src/"
}
},
"autoload-dev": {
"psr-4": {
"Kreuzberg\\E2e\\": "tests/"
}
},
"scripts": {
"test": "php run_tests.php"
}
}

2470
e2e/php.backup/composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

3
e2e/php.backup/php.ini generated Normal file
View File

@@ -0,0 +1,3 @@
; Temporary PHP INI for e2e tests — loads kreuzberg PHP extension from system extension directory
[PHP]
extension=libkreuzberg_php.dylib

13
e2e/php.backup/phpunit.xml generated Normal file
View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/13.1/phpunit.xsd"
bootstrap="bootstrap.php"
colors="true"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="e2e">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>