-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
24 additions
and
36 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,12 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: php-actions/composer@v6 # or alternative dependency management | ||
- uses: php-actions/phpunit@v3 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Beam | ||
|
||
[![Build Status](https://travis-ci.org/heyday/beam.png?branch=master)](https://travis-ci.org/heyday/beam) | ||
|
||
Beam is a command line utility for deploying websites to servers. It allows you to sync files between a version control | ||
system and a remote host, and run shell commands at fixed stages to further automate the deployment process. Beam works | ||
best (and by default) using `rsync` over `ssh`, though it also has support for intelligent deployment through SFTP | ||
|
@@ -10,11 +8,12 @@ and FTP. | |
## Installation | ||
|
||
```bash | ||
$ curl -s https://getbeam.io/installer -O; php installer | ||
$ git clone [email protected]:heyday/beam.git | ||
$ cd beam | ||
$ composer install | ||
$ php ./bin/installer | ||
``` | ||
|
||
Note: this will create a file called `installer` and then delete it after the installation has completed. | ||
|
||
## Updating | ||
|
||
$ beam self-update | ||
|
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 |
---|---|---|
|
@@ -21,4 +21,4 @@ try { | |
$e->getLine() | ||
); | ||
exit(1); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,30 +2,16 @@ | |
"name": "heyday/beam", | ||
"description": "A utility for deploying files to servers", | ||
"minimum-stability": "stable", | ||
"authors": [ | ||
{ | ||
"name": "Shane Garelja", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Cam Spiers", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Stephen Holdaway", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "7.4" | ||
"php": "8.2" | ||
} | ||
}, | ||
"provide": { | ||
"ext-ssh2": "*" | ||
}, | ||
"require": { | ||
"php": ">=7.4", | ||
"php": ">=8", | ||
"symfony/console": "^5.4.9", | ||
"symfony/process": "^5.4.8", | ||
"symfony/options-resolver": "^5.4.3", | ||
|