Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dnunez24/platformsh-deploy-php

A library for creating build and deployment processes for PHP applications hosted on Platform.sh
https://github.com/dnunez24/platformsh-deploy-php

deploy deployment php platformsh

Last synced: 4 days ago
JSON representation

A library for creating build and deployment processes for PHP applications hosted on Platform.sh

Awesome Lists containing this project

README

        

# Platform.sh PHP Deploy

This is a foundational library to create build and deployment processes for PHP applications hosted on Platform.sh.

## Getting Started

Implement your concrete build strategy by extending the abstract class from this library:

```php
add($buildCommand);
$application->add($deployCommand);
$application->run();
```

Finally, run your scripts to build and deploy the app:

```bash
composer exec bin/myapp build
composer exec bin/myapp deploy
```