Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Framework V2 support #17

Merged
merged 15 commits into from
Sep 5, 2024
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
vendor
composer.lock
.phpunit.result.cache
.idea
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "library",
"keywords": ["php","framework", "upf", "utopia", "platform"],
"license": "MIT",
"minimum-stability": "stable",
"minimum-stability": "RC",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this too

"autoload": {
"psr-4": {"Utopia\\Platform\\": "src/Platform"}
},
Expand All @@ -18,9 +18,10 @@
"php": ">=8.0",
"ext-json": "*",
"ext-redis": "*",
"utopia-php/framework": "0.33.*",
"utopia-php/cli": "0.15.*",
"utopia-php/queue": "0.7.*"
"utopia-php/servers": "0.1.0",
"utopia-php/framework": "1.0.*",
"utopia-php/cli": "1.0.*",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be updated

"utopia-php/queue": "0.8.*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
Expand Down
Loading
Loading