Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dnunez24/platformsh-deploy-php
- Owner: dnunez24
- License: mit
- Created: 2017-03-09T06:10:17.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-09T06:12:21.000Z (almost 8 years ago)
- Last Synced: 2024-04-22T05:08:14.794Z (10 months ago)
- Topics: deploy, deployment, php, platformsh
- Language: PHP
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```