From 7ec53d95f62ac76962bbccb121ee99eb60b2c45c Mon Sep 17 00:00:00 2001 From: Janez Urevc Date: Wed, 22 Jul 2026 13:47:27 +0200 Subject: [PATCH 1/3] Update README CI badges and drop Scrutinizer - Replace dead Travis/Scrutinizer badges with GitHub Actions - Note supported PHP versions - Point docs links at readthedocs.io - Remove .scrutinizer.yml (coverage no longer uploaded) --- .scrutinizer.yml | 7 ------- README.md | 12 +++++++----- 2 files changed, 7 insertions(+), 12 deletions(-) delete mode 100644 .scrutinizer.yml diff --git a/.scrutinizer.yml b/.scrutinizer.yml deleted file mode 100644 index acbda73..0000000 --- a/.scrutinizer.yml +++ /dev/null @@ -1,7 +0,0 @@ -checks: - php: - code_rating: true - duplication: true - -tools: - external_code_coverage: true diff --git a/README.md b/README.md index a6f48fe..bc17757 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # portphp/csv [![Latest Version](https://img.shields.io/github/release/portphp/csv.svg?style=flat-square)](https://github.com/portphp/csv/releases) -[![Build Status](https://travis-ci.org/portphp/csv.svg)](https://travis-ci.org/portphp/csv) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/portphp/csv/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/portphp/csv/?branch=master) -[![Code Coverage](https://scrutinizer-ci.com/g/portphp/csv/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/portphp/csv/?branch=master) +[![CI](https://github.com/portphp/csv/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/portphp/csv/actions) +[![PHP Version](https://img.shields.io/packagist/php-v/portphp/csv.svg?style=flat-square)](https://packagist.org/packages/portphp/csv) -CVS reader and writer for [Port](https://github.com/portphp). +**Requirements:** PHP ^8.2 (tested on 8.2–8.5). + + +CSV reader and writer for [Port](https://github.com/portphp). ## Installation @@ -22,7 +24,7 @@ of the Composer documentation. ## Documentation -Documentation is available at https://portphp.readthedocs.org. +Documentation is available at https://portphp.readthedocs.io. ## Issues and feature requests From 57508b09b6a085d94e3be9ed7ec0a388dee60255 Mon Sep 17 00:00:00 2001 From: Janez Urevc Date: Wed, 22 Jul 2026 13:50:44 +0200 Subject: [PATCH 2/3] Address Copilot feedback on README hygiene PR - Align composer.json support.docs with readthedocs.io - Drop stale .scrutinizer.yml / .travis.yml export-ignore entries - Clarify PHP badge wording on core (tested in CI) --- .gitattributes | 2 -- composer.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitattributes b/.gitattributes index 516c22d..b179359 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,8 +3,6 @@ tests/ export-ignore .editorconfig export-ignore .gitattributes export-ignore .gitignore export-ignore -.scrutinizer.yml export-ignore -.travis.yml export-ignore CONTRIBUTING.md export-ignore phpspec.yml.dist export-ignore phpunit.xml.dist export-ignore diff --git a/composer.json b/composer.json index 3b64ae3..7719973 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "support": { "issues": "https://github.com/portphp/portphp/issues", "source": "https://github.com/portphp/csv", - "docs": "https://portphp.readthedocs.org" + "docs": "https://portphp.readthedocs.io" }, "require": { "php": "^8.2", From 0d9bf7d4c0cd0fd58c970244454dda5d2f9b0143 Mon Sep 17 00:00:00 2001 From: Janez Urevc Date: Wed, 22 Jul 2026 13:53:45 +0200 Subject: [PATCH 3/3] Point CI badge link at the workflow runs page --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc17757..e8ed089 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # portphp/csv [![Latest Version](https://img.shields.io/github/release/portphp/csv.svg?style=flat-square)](https://github.com/portphp/csv/releases) -[![CI](https://github.com/portphp/csv/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/portphp/csv/actions) +[![CI](https://github.com/portphp/csv/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/portphp/csv/actions/workflows/test.yml) [![PHP Version](https://img.shields.io/packagist/php-v/portphp/csv.svg?style=flat-square)](https://packagist.org/packages/portphp/csv) **Requirements:** PHP ^8.2 (tested on 8.2–8.5).