-
Notifications
You must be signed in to change notification settings - Fork 0
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 #9 from php-etl/feature/new-commands
Added commands for docker and composer
- Loading branch information
Showing
7 changed files
with
120 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile; | ||
|
||
final readonly class Argument implements Variable | ||
{ | ||
public function __construct( | ||
public string $name, | ||
) { | ||
} | ||
|
||
public function __toString() | ||
{ | ||
return "\${{$this->name}}"; | ||
} | ||
} |
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 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,23 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile\Dockerfile; | ||
|
||
final readonly class Arg implements LayerInterface, \Stringable | ||
{ | ||
public function __construct( | ||
private string $name, | ||
private ?string $defaultValue = null, | ||
) { | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
if (null !== $this->defaultValue) { | ||
return sprintf('ARG %s=%s', $this->name, $this->defaultValue); | ||
} | ||
|
||
return sprintf('ARG %s', $this->name); | ||
} | ||
} |
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,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile; | ||
|
||
final readonly class EnvironmentVariable implements Variable | ||
{ | ||
public function __construct( | ||
public string $name, | ||
) { | ||
} | ||
|
||
public function __toString() | ||
{ | ||
return "\${{$this->name}}"; | ||
} | ||
} |
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,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile\PHP; | ||
|
||
use Kiboko\Component\Dockerfile\Dockerfile; | ||
use Kiboko\Component\Dockerfile\Variable; | ||
|
||
final readonly class ComposerGlobalConfig implements Dockerfile\LayerInterface, \Stringable | ||
{ | ||
public function __construct( | ||
private string $key, | ||
private string|Variable $value, | ||
) { | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return (string) new Dockerfile\Run(<<<"RUN" | ||
composer config --global {$this->key} {$this->value} | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile\PHP; | ||
|
||
use Kiboko\Component\Dockerfile\Dockerfile; | ||
use Kiboko\Component\Dockerfile\Variable; | ||
|
||
final readonly class ComposerGlobalGithubAuthentication implements Dockerfile\LayerInterface, \Stringable | ||
{ | ||
public function __construct( | ||
private Variable $tokenArgument, | ||
private string $host = 'github.com', | ||
) { | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return (string) new Dockerfile\Run(<<<"RUN" | ||
composer config --global github-oauth.{$this->host} {$this->tokenArgument} | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Kiboko\Component\Dockerfile; | ||
|
||
interface Variable extends \Stringable | ||
{ | ||
} |