PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Vinicius Dias   PHP Google Search Crawler   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Google Search Crawler
Perform searches and retrieve results from Google
Author: By
Last change: No need for mbstring extension anymore
Date: 5 years ago
Size: 1,621 bytes
 

Contents

Class file image Download
{ "name": "cviniciussdias/google-crawler", "description": "A simple Crawler for getting Google results", "keywords": ["google", "crawler", "search"], "type": "library", "require": { "php": ">=7.2", "guzzlehttp/guzzle": "^6.3", "symfony/dom-crawler": "^4.2", "ext-ds": "*", "ext-dom": "*" }, "require-dev": { "phpunit/phpunit": "^8.0", "squizlabs/php_codesniffer": "^3.0", "sebastian/phpcpd": "^4.1", "infection/infection": "^0.13.0", "nunomaduro/phpinsights": "^1.0", "phan/phan": "^1.3", "phpstan/phpstan": "^0.11.6", "phpstan/phpstan-phpunit": "^0.11.1" }, "suggest": { "php-ds/php-ds": "Allow IDE autocomplete for editing the component" }, "scripts": { "phan": "export PHAN_DISABLE_XDEBUG_WARN=1; phan --allow-polyfill-parser", "phpstan": "phpstan analyse -l 5 src tests", "phpcs": "phpcs --standard=PSR12 src", "phpcpd": "phpcpd src", "phpunit": "phpunit --coverage-clover=coverage.clover", "test": [ "@phan", "@phpstan", "@phpcs", "@phpcpd", "@phpunit" ] }, "autoload": { "psr-4": { "CViniciusSDias\\GoogleCrawler\\": "src/" } }, "autoload-dev": { "psr-4": { "CViniciusSDias\\GoogleCrawler\\Tests\\": "tests/" } }, "license": "GPL-3.0", "authors": [ { "name": "CViniciusSDias", "email": "carlosv775@gmail.com" } ] }