Skip to content

Started to create classes to send workflow configurations to the cloud #133

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

Merged
merged 24 commits into from
Jan 17, 2024
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
9a23958
Started to create classes to send workflow configurations to the cloud
sebprt Oct 23, 2023
976b909
Added workflow management
sebprt Oct 24, 2023
042473e
[rector] Rector fixes
actions-user Oct 24, 2023
015b3be
Improved exceptions management + request body
sebprt Oct 25, 2023
6ba550e
Updated command to update and remove a workflow
sebprt Oct 25, 2023
82cb5ce
[rector] Rector fixes
actions-user Oct 25, 2023
81ef60f
Added a check on the validity of the token
sebprt Oct 26, 2023
6ea3ba1
Refactored and simplified the code
sebprt Oct 26, 2023
79a6afc
Check the version used in the file configuration
sebprt Oct 26, 2023
961e483
Fixed property access modifier
sebprt Oct 26, 2023
8c30822
Fixed PHPStan errors
sebprt Oct 26, 2023
feb7d6b
Removed the type argument in console commands
sebprt Oct 31, 2023
450d43b
Fixed configuration format
sebprt Oct 31, 2023
f2031ab
Assigned type into the Autoload DTO
sebprt Oct 31, 2023
c7a837d
Fixed generated codes
sebprt Nov 2, 2023
f6e23e3
Fixed issues
sebprt Dec 6, 2023
d3f02af
Ran php-cs-fixer + fixed PHPStan errors
sebprt Dec 20, 2023
dd11c1a
Ran php-cs-fixer
sebprt Jan 8, 2024
f56e96e
Fixed cloud executable binary + added missing dependencies
sebprt Jan 10, 2024
b358c48
Added option into the Cloud's remove command
sebprt Jan 15, 2024
d663e9f
Updated the php-etl/gyroscops-api-client package
sebprt Jan 15, 2024
6a4c3dd
Added missing use
sebprt Jan 15, 2024
2fd2373
Applied suggestion
sebprt Jan 17, 2024
b9480c4
Ran php-cs-fixer
sebprt Jan 17, 2024
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: 3 additions & 1 deletion bin/cloud
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env php
<?php

if (file_exists(__DIR__ . '/../../../../vendor/autoload.php')) {
if (file_exists(getcwd() . '/vendor/autoload.php')) {
require getcwd() . '/vendor/autoload.php';
} else if (file_exists(__DIR__ . '/../../../../vendor/autoload.php')) {
require __DIR__ . '/../../../../vendor/autoload.php';
} else if (file_exists(__DIR__ . '/../../../vendor/autoload.php')) {
require __DIR__ . '/../../../vendor/autoload.php';
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"symfony/deprecation-contracts": "*",
"react/child-process": "^0.7",
"react/async": "^4.1",
"react/promise-timer": "^1.10"
"react/promise-timer": "^1.10",
"symfony/http-client": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
Expand All @@ -50,7 +51,6 @@
"rector/rector": "^0.15",
"php-etl/phpunit-extension": "0.7.*",
"mikey179/vfsstream": "^1.6",
"symfony/http-client": "^6.3",
"friendsofphp/php-cs-fixer": "^3.38"
},
"suggest": {
Expand Down
Loading