-
-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #643 from jlevers/v6
V6: Major rewrite using Saloon
- Loading branch information
Showing
4,123 changed files
with
177,856 additions
and
422,939 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
require __DIR__ . '/../vendor/autoload.php'; | ||
|
||
use SellingPartnerApi\Generator\Commands\DownloadSchemas; | ||
use SellingPartnerApi\Generator\Commands\GenerateSchemas; | ||
use SellingPartnerApi\Generator\Commands\RefactorSchemas; | ||
use SellingPartnerApi\Generator\Commands\UpdateVersion; | ||
use Symfony\Component\Console\Application; | ||
|
||
// Initialize the Console Application | ||
$application = new Application(); | ||
|
||
$application->add(new DownloadSchemas()); | ||
$application->add(new RefactorSchemas()); | ||
$application->add(new GenerateSchemas()); | ||
$application->add(new UpdateVersion()); | ||
|
||
// Run the application | ||
$application->run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.