alc / links-checker
Check urls contained in a file / Crawl sitemap.xml and find broken links
v1.1.1
2016-12-07 16:57 UTC
Requires
- php: >=5.3.0
- alc/csv: ^1.0
- alc/dom-parser-helper: ^1.0
- alc/sitemap-crawler: ^1.0
- symfony/console: ^3.1
This package is auto-updated.
Last update: 2024-11-19 02:59:46 UTC
README
Install globaly
composer global require alc/links-checker # Make sure you have export PATH in your ~/bashrc export PATH=~/.config/composer/vendor/bin:$PATH
Usage
check:file command
# Check urls contained in file (one per line) phplchk check:file tests/input.txt # Check urls and write results in csv file phplchk check:file tests/input.txt -o tests/output.csv # Check urls from remote file phplchk check:file https://raw.githubusercontent.com/chemel/links-checker/master/tests/input.txt # Show help phplchk check:file --help
check:sitemap command
# Check sitemap.xml phplchk check:sitemap http://blog.chemel.fr/sitemap.xml # Check sitemap.xml and write results in csv file phplchk check:sitemap http://blog.chemel.fr/sitemap.xml -o output.csv # Crawl sitemap.xml and check links on each pages phplchk check:sitemap http://blog.chemel.fr/sitemap.xml --level=2 phplchk check:sitemap http://blog.chemel.fr/sitemap.xml -o output.csv --level=2 # Show help phplchk check:sitemap --help
sitemap:crawl command
# Dump sitemap urls phplchk sitemap:crawl http://blog.chemel.fr/sitemap.xml > sitemap.txt
check:seo command
# Check + extract meta title, description, keywords, canonical url
phplchk check:seo tests/seo-input.txt tests/seo-output.csv
url:generator command
phplchk url:generator 'http://blog.chemel.fr/page/{1-10}/' > check-me.txt