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

Synchronize web composer.json with others #949

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"psr/http-client": "^1.0",
"psr/log": "^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"symfony/console": "^6.3 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"webmozart/glob": "^3.0 || ^4.0"
},
"require-dev": {
Expand All @@ -48,7 +48,7 @@
"php-http/mock-client": "^1.5",
"ramsey/uuid": "^4.5",
"symfony/cache": "^6.2 || ^7.0",
"symfony/dotenv": "^6.2 || ^7.0",
"symfony/dotenv": "^6.4 || ^7.0",
"symfony/finder": "^6.3 || ^7.0",
"symfony/uid": "^6.3 || ^7.0"
},
Expand Down
1 change: 1 addition & 0 deletions monorepo-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
__DIR__ . '/src/core',
__DIR__ . '/src/adapter',
__DIR__ . '/src/lib',
__DIR__ . '/src/web',
Copy link
Member

Choose a reason for hiding this comment

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

hmm the way I was thinking about it was that we are going to build static content and only that static content would be published to standalone repo that would be gh static page.

I'm also not sure if we even want to keep the same composer.json for landing page, it's not that this landing page should use the same dependencies and the code, no?

]);

$config->dataToAppend([
Expand Down
2 changes: 1 addition & 1 deletion src/lib/parquet-viewer/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"coduo/php-humanizer": "^4.0",
"flow-php/etl": "^0.5.0 || 1.x-dev",
"flow-php/parquet": "^0.5.0 || 1.x-dev",
"symfony/console": "^6.3 || ^7.0"
"symfony/console": "^6.4 || ^7.0"
},
"config": {
"optimize-autoloader": true,
Expand Down
5 changes: 3 additions & 2 deletions src/web/landing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"description": "Flow PHP ETL - Web",
"type": "project",
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"symfony/http-kernel": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/routing": "^6.4",
Expand All @@ -11,9 +12,9 @@
"symfony/asset-mapper": "^6.4",
"symfony/asset": "^6.4",
"symfony/runtime": "^6.4",
"symfony/console": "^6.4",
"symfony/console": "^6.4 || ^7.0",
"symfony/yaml": "^6.4",
"symfony/dotenv": "^6.4"
"symfony/dotenv": "^6.4 || ^7.0"
},
"require-dev": {
"symfony/web-profiler-bundle": "^6.4",
Expand Down
Loading