Skip to content
Merged
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
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@ If you are using macOS, you can install php-timecop with [Homebrew](https://brew
brew install homebrew/php/php71-timecop
```

In RHEL/CentOS/Fedora, you can install php-timecop from [Remi's RPM repository](https://rpms.remirepo.net/) .
In Fedora, you can install php-timecop from official repository as php-pecl-timecop
```
sudo dnf install php-pecl-timecop
```

In RHEL/CentOS, you can install php-timecop from [Remi's RPM repository](https://rpms.remirepo.net/).

```
sudo yum install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
sudo yum install yum-utils
sudo yum-config-manager --enable remi-php71
sudo yum install php php-timecop
sudo yum install php-pecl-timecop
```

Otherwise, you can use pecl command to install php-timecop.
Expand Down