-
- Downloads
feat: add rubixml swoole backend
Showing
- composer.json 22 additions, 12 deletionscomposer.json
- composer.lock 1601 additions, 407 deletionscomposer.lock
- examples/machine-learning/.gitignore 5 additions, 0 deletionsexamples/machine-learning/.gitignore
- examples/machine-learning/README.md 11 additions, 0 deletionsexamples/machine-learning/README.md
- examples/machine-learning/app/HtmlErrorTemplate.php 24 additions, 0 deletionsexamples/machine-learning/app/HtmlErrorTemplate.php
- examples/machine-learning/app/HttpResponder/Homepage.php 21 additions, 0 deletionsexamples/machine-learning/app/HttpResponder/Homepage.php
- examples/machine-learning/app/HttpRouteSymbol.php 17 additions, 0 deletionsexamples/machine-learning/app/HttpRouteSymbol.php
- examples/machine-learning/app/UserRepository.php 18 additions, 0 deletionsexamples/machine-learning/app/UserRepository.php
- examples/machine-learning/app/lang/en/error.ini 6 additions, 0 deletionsexamples/machine-learning/app/lang/en/error.ini
- examples/machine-learning/app/views/error.twig 12 additions, 0 deletionsexamples/machine-learning/app/views/error.twig
- examples/machine-learning/app/views/homepage.twig 1 addition, 0 deletionsexamples/machine-learning/app/views/homepage.twig
- examples/machine-learning/bin/doctrine.php 9 additions, 0 deletionsexamples/machine-learning/bin/doctrine.php
- examples/machine-learning/bin/resonance.php 9 additions, 0 deletionsexamples/machine-learning/bin/resonance.php
- examples/machine-learning/composer.json 40 additions, 0 deletionsexamples/machine-learning/composer.json
- examples/machine-learning/composer.lock 8340 additions, 0 deletionsexamples/machine-learning/composer.lock
- examples/machine-learning/config.ini.example 90 additions, 0 deletionsexamples/machine-learning/config.ini.example
- examples/machine-learning/constants.php 11 additions, 0 deletionsexamples/machine-learning/constants.php
- examples/machine-learning/container.php 19 additions, 0 deletionsexamples/machine-learning/container.php
- examples/machine-learning/psalm.xml 68 additions, 0 deletionsexamples/machine-learning/psalm.xml
- examples/machine-learning/tools/psalm/.gitignore 1 addition, 0 deletionsexamples/machine-learning/tools/psalm/.gitignore
{ | ||
"name": "distantmagic/resonance", | ||
"description": "PHP Framework with AI capabilities.", | ||
"type": "library", | ||
"license": "MIT", | ||
"archive": { | ||
"exclude": [ | ||
"/app", | ||
"/docs", | ||
"/examples", | ||
"/resources", | ||
"/tools" | ||
] | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Mateusz Charytoniuk", | ||
"email": "mateusz.charytoniuk@protonmail.com" | ||
} | ||
], | ||
"autoload": { | ||
"files": [ | ||
"src/helpers/coroutineMustGetContext.php", | ||
... | ... | @@ -15,12 +26,9 @@ |
"Distantmagic\\Resonance\\": "src/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Mateusz Charytoniuk", | ||
"email": "mateusz.charytoniuk@protonmail.com" | ||
} | ||
], | ||
"description": "PHP Framework with AI capabilities.", | ||
"license": "MIT", | ||
"name": "distantmagic/resonance", | ||
"require": { | ||
"defuse/php-encryption": "^2.4", | ||
"distantmagic/graphql-swoole-promise-adapter": "^0.1.1", | ||
... | ... | @@ -64,7 +72,8 @@ |
"twig/twig": "^3.7", | ||
"webonyx/graphql-php": "^15.6", | ||
"beberlei/assert": "^3.3", | ||
"dunglas/doctrine-json-odm": "^1.4" | ||
"dunglas/doctrine-json-odm": "^1.4", | ||
"rubix/ml": "^2.5" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^11.0", | ||
... | ... | @@ -81,5 +90,6 @@ |
"ext-readline": "Unlocks some console features", | ||
"ext-redis": "HTTP Sessions driver", | ||
"ext-uuid": "Faster UUID generation" | ||
} | ||
}, | ||
"type": "library" | ||
} |
This diff is collapsed.
examples/machine-learning/.gitignore
0 → 100644
examples/machine-learning/README.md
0 → 100644
examples/machine-learning/bin/doctrine.php
0 → 100644
examples/machine-learning/bin/resonance.php
0 → 100644
examples/machine-learning/composer.json
0 → 100644
examples/machine-learning/composer.lock
0 → 100644
This diff is collapsed.
examples/machine-learning/config.ini.example
0 → 100644
examples/machine-learning/constants.php
0 → 100644
examples/machine-learning/container.php
0 → 100644
examples/machine-learning/psalm.xml
0 → 100644
Please register or sign in to comment