Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Take the advantage of goodie commands like `phpctl create` to start a new projec

### Just install
```shell
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
```
### And that is it!
Try it out:
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Take the advantage of goodies commands like `phpctl create` to start a new proje
### Installation

```shell
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
```

**That is it!** Now you have `phpctl` available in your system.

#### Custom installation
You can also pass an argument to install at a custom location (e.g. `~/bin`), but you have to make sure that folder is in your `$PATH` variable.
```shell
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)" ~/bin
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)" ~/bin
```

#### Homebrew
Expand Down
2 changes: 1 addition & 1 deletion tests/install/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
neofetch
/bin/bash -c "$(curl -fsSL https://phpctl.dev/install.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opencodeco/phpctl/refs/heads/main/docs/install.sh)"
echo ""
notty phpctl doctor
notty php --version
Expand Down
Loading