Skip to content

Commit

Permalink
Merge pull request #7 from productsupcom/DEV-18195-init
Browse files Browse the repository at this point in the history
DEV-18195 initial commit
  • Loading branch information
khelmrich authored Jul 17, 2024
2 parents 96df2ec + 74c8936 commit f71f509
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .env.test
Original file line number Diff line number Diff line change
@@ -1 +1 @@
KERNEL_CLASS='Productsup\BinCdeAppSkeleton\Kernel'
KERNEL_CLASS='Productsup\BinCdeAmazonS3Parquet\Kernel'
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
env.name = "bin-cde-app-skeleton"
env.description = "bin-cde-app-skeleton"
env.name = "bin-cde-amazon-s3-parquet"
env.description = "bin-cde-amazon-s3-parquet"
env.maintainer = "Channel Dev Team <featureteam@productsup.com>"
env.homepage = "https://github.com/productsupcom/bin-cde-app-skeleton"
env.homepage = "https://github.com/productsupcom/bin-cde-amazon-s3-parquet"
def slack_channel = "#team-cd-dromund-kaas-notifications"
String runtimeContainer = "php-cli"
env.box_version = "3.11.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# bin-cde-app-skeleton
# bin-cde-amazon-s3-parquet
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

use Productsup\BinCdeAppSkeleton\Kernel;
use Productsup\BinCdeAmazonS3Parquet\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;

if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
},
"autoload": {
"psr-4": {
"Productsup\\BinCdeAppSkeleton\\": "src/"
"Productsup\\BinCdeAmazonS3Parquet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Productsup\\BinCdeAppSkeleton\\Tests\\": "tests/"
"Productsup\\BinCdeAmazonS3Parquet\\Tests\\": "tests/"
}
},
"replace": {
Expand Down
2 changes: 1 addition & 1 deletion config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
autowire: true
autoconfigure: true

Productsup\BinCdeAppSkeleton\:
Productsup\BinCdeAmazonS3Parquet\:
resource: '../src/'
exclude:
- '../src/DependencyInjection/'
Expand Down
2 changes: 1 addition & 1 deletion src/Import/Application/Importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Productsup\BinCdeAppSkeleton\Import\Application;
namespace Productsup\BinCdeAmazonS3Parquet\Import\Application;

final class Importer
{
Expand Down
4 changes: 2 additions & 2 deletions src/Import/Infrastructure/Cli/ImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

declare(strict_types=1);

namespace Productsup\BinCdeAppSkeleton\Import\Infrastructure\Cli;
namespace Productsup\BinCdeAmazonS3Parquet\Import\Infrastructure\Cli;

use Productsup\BinCdeAppSkeleton\Import\Application\Importer;
use Productsup\BinCdeAmazonS3Parquet\Import\Application\Importer;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Productsup\BinCdeAppSkeleton;
namespace Productsup\BinCdeAmazonS3Parquet;

use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
Expand Down

0 comments on commit f71f509

Please sign in to comment.