Skip to content

Commit 577b68b

Browse files
committed
Cleanup CI and improve README
1 parent 028ec7f commit 577b68b

File tree

2 files changed

+21
-14
lines changed

2 files changed

+21
-14
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ jobs:
4444
run: |
4545
for v in 5.3 5.4 5.5; do
4646
sudo XZ_OPT=-e9 tar cfJ php-$v.tar.xz php-$v
47-
shopt -s nullglob
48-
for f in php-$v.tar.xz; do
49-
sha256sum "$f" >"${f}".sha256sum.txt
50-
done
5147
curl --user "$BINTRAY_USER":"$BINTRAY_KEY" -X DELETE https://api.bintray.com/content/"$BINTRAY_USER"/"$BINTRAY_REPO"/php-$v.tar.xz || true
5248
curl --user "$BINTRAY_USER":"$BINTRAY_KEY" -T php-$v.tar.xz https://api.bintray.com/content/shivammathur/php/"$v"-linux/"$v"/php-$v.tar.xz || true
5349
curl --user "$BINTRAY_USER":"$BINTRAY_KEY" -X POST https://api.bintray.com/content/"$BINTRAY_USER"/"$BINTRAY_REPO"/"$v"-linux/"$v"/publish || true

README.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# PHP5 for ubuntu
22

33
<a href="https://github.com/shivammathur/php5-ubuntu" title="php5 install scripts for ubuntu"><img alt="Build status" src="https://github.com/shivammathur/php5-ubuntu/workflows/Test/badge.svg"></a>
4-
<a href="https://github.com/shivammathur/php-builder/blob/master/LICENSE" title="license"><img alt="LICENSE" src="https://img.shields.io/badge/license-MIT-428f7e.svg"></a>
5-
<a href="https://github.com/shivammathur/php5-debian/tree/master/dist" title="builds"><img alt="PHP Versions Supported" src="https://img.shields.io/badge/php-5.3, 5.4 and 5.5-8892BF.svg"></a>
4+
<a href="https://github.com/shivammathur/php5-ubuntu/blob/master/LICENSE" title="license"><img alt="LICENSE" src="https://img.shields.io/badge/license-MIT-428f7e.svg"></a>
5+
<a href="https://github.com/shivammathur/php5-ubuntu#usage" title="Install builds"><img alt="PHP Versions Supported" src="https://img.shields.io/badge/php-5.3, 5.4 and 5.5-8892BF.svg"></a>
66

77
> Scripts to install end of life PHP versions.
88
9-
PHP versions in this project have reached end of life and should not be used except for testing backward-compatibility.
9+
PHP versions in this project have reached end of life and should not be used except for testing backward-compatibility. This project aims to provide old PHP for GitHub Actions Ubuntu runners. You might need some more libraries if using this elsewhere.
1010

1111
## Usage
1212

@@ -27,10 +27,21 @@ curl -sSL https://github.com/shivammathur/php5-ubuntu/releases/latest/download/i
2727

2828
## License
2929

30-
The code in this project is licensed under the [MIT license](http://choosealicense.com/licenses/mit/).
31-
Please see the [license file](LICENSE) for more information.
32-
33-
34-
## This project uses the following works
35-
36-
- [dotdeb](https://www.dotdeb.org/ "dotdeb")
30+
- The code and documentation in this project is licensed under the [MIT license](LICENSE "License for shivammathur/php5-ubuntu").
31+
- The PHP packages except for PHP 5.3 have been sourced from [Dotdeb Releases](https://www.dotdeb.org/ "Dotdeb PHP releases").
32+
- The library binaries have been sourced from [Ubuntu](https://packages.ubuntu.com/ "Ubuntu Packages Repository") package archive and distributed unmodified.
33+
- This project has multiple [dependencies](#dependencies "Dependencies of shivammathur/php5-ubuntu"). Their licenses can be found in their respective repositories.
34+
35+
## Dependencies
36+
37+
- [PHP 5.3 libraries](https://github.com/shivammathur/php5-ubuntu/tree/master/php-5.3/deps "Libraries for PHP 5.3")
38+
- [PHP 5.4 libraries](https://github.com/shivammathur/php5-ubuntu/tree/master/php-5.4/deps "Libraries for PHP 5.4")
39+
- [PHP 5.5 libraries](https://github.com/shivammathur/php5-ubuntu/tree/master/php-5.5/deps "Libraries for PHP 5.5")
40+
- [APCu](https://github.com/krakjoe/apcu "APCu PHP extension")
41+
- [Dotdeb](https://www.dotdeb.org/ "Dotdeb PHP releases")
42+
- [Imagick](https://github.com/Imagick/imagick "Imagick PHP extension")
43+
- [PEAR](https://github.com/pear/pear-core "PEAR to install extensions")
44+
- [PHP](https://github.com/php/php-src "PHP upstream")
45+
- [PhpRedis](https://github.com/phpredis/phpredis "Redis PHP extension")
46+
- [Xdebug](https://github.com/xdebug/xdebug "Xdebug PHP extension")
47+
- [Zend OPCache](https://github.com/zendtech/ZendOptimizerPlus "Zend OPCache extension")

0 commit comments

Comments
 (0)