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: 12 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-09T06:12:21.000Z (about 9 years ago)
- Last Synced: 2025-02-10T20:52:12.107Z (about 1 year 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
```