-
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.
Added classes to manage the options used in the composer config command
- Loading branch information
Showing
6 changed files
with
78 additions
and
6 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,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
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 | ||
{ | ||
} |