Download the PHP package dantleech/fink without Composer
On this page you can find all versions of the php package dantleech/fink. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package fink
Fink
Fink (pronounced "Phpink") is a command line tool, written in PHP, for checking HTTP links.
- Check websites for broken links or error pages.
- Asynchronous HTTP requests.
Installation
Install as a stand-alone tool or as a project dependency:
Installing as a project dependency
Installing from a PHAR
Download the PHAR from the Releases page.
Building your own PHAR with Box
You can build your own PHAR by cloning this repository and running:
Usage
Run the command with a single URL to start crawling:
Use --output=somefile
to log verbose information for each URL in JSON format, including:
url
: The tested URL.status
: The HTTP status code.referrer
: The page which linked to the URL.referrer_title
: The value (e.g. link title) of the referring element.referrer_xpath
: The path to the node in the referring document.distance
: The number of links away from the start document.request_time
: Number of microseconds taken to make the request.timestamp
: The time that the request was made.exception
: Any runtime exception encountered (e.g. malformed URL, etc).
Arguments
url
(multiple) Specify one or more base URLs to crawl (mandatory).
Options
--client-max-body-size
: Max body size for HTTP client (in bytes).--client-max-header-size
: Max header size for HTTP client (in bytes).--client-redirects=5
: Set the maximum number of times the client should redirect (0
to never redirect).--client-security-level=1
: Set the default SSL security level--client-timeout=15000
: Set the maximum amount of time (in milliseconds) the client should wait for a response, defaults to 15,000 (15 seconds).--concurrency
: Number of simultaneous HTTP requests to use.--display-bufsize=10
: Set the number of URLs to consider when showing the display.--display=+memory
: Set, add or remove elements of the runtime display (prefix with-
or+
to modify the default set).--exclude-url=logout
: (multiple) Exclude URLs matching the given PCRE pattern.--header="Foo: Bar"
: (multiple) Specify custom header(s).--help
: Display available options.--include-link=foobar.html
: Include given link as if it were linked from the base URL.--insecure
: Do not verify SSL certificates.--load-cookies
: Load from a cookies.txt.--max-distance
: Maximum allowed distance from base URL (if not specified then there is no limitation).--max-external-distance
: Limit the external (disjoint) distance from the base URL.--no-dedupe
: Do not filter duplicate URLs (can result in a non-terminating process).--output=out.json
: Output JSON report for each URL to given file (truncates existing content).--publisher=csv
: Set the publisher (defaults tojson
) can be eitherjson
orcsv
.--rate
: Set a maximum number of requests to make in a second.--stdout
: Stream to STDOUT directly, disables display and any specified outfile.
Examples
Crawl a single website
Crawl a single website and check the status of external links
Use jq
to analyse results
jq is a tool which can be used to query and manipulate JSON data.
Crawl pages behind a login
note: its not possible to create the cookie jar on computer A, store it and read it in again on e.g. a linux server. you need to create the cookie file from the very same ip, because otherwise server side session handling might not continue the http-session because of a IP mismatch
Exit Codes
0
: All URLs were successful.1
: Unexpected runtime error.2
: At least one URL failed to resolve successfully.
All versions of fink with dependencies
amphp/dns Version ^v1.2.2
amphp/file Version ^1
amphp/http-client Version ^4.1.0
amphp/http-client-cookies Version ^1
league/uri Version ^6
phpactor/console-extension Version ~0.1
phpactor/container Version ^1.0
webmozart/path-util Version ^2.3