├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── README.old.md ├── autoload.php ├── composer.json ├── doc └── proxy_rotation.md ├── lib ├── GoogleUrl.php └── GoogleUrl │ ├── AdwordsResultSet.php │ ├── Curl.php │ ├── DelayedQuery.php │ ├── Delayer.php │ ├── Exception.php │ ├── Exception │ ├── CaptachaException.php │ ├── CurlException.php │ └── ProxyException.php │ ├── GoogleAdwordPosition.php │ ├── GoogleDOM.php │ ├── GooglePosition.php │ ├── MilliDelayer.php │ ├── Proxy │ ├── ProxyObject.php │ └── StdProxy.php │ ├── ProxyAccessAdapter.php │ ├── ProxyDelayedInterface.php │ ├── ProxyInterface.php │ ├── ProxyPool.php │ ├── ProxyPool │ └── File.php │ ├── ProxyString.php │ ├── SimpleProxy.php │ └── SimpleProxyInterface.php └── tests ├── CoreTest ├── NetTest.php ├── ProxyTest.php └── UrlTest.php ├── bootstrap.php ├── data └── proxies.json └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/README.md -------------------------------------------------------------------------------- /README.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/README.old.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/autoload.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/composer.json -------------------------------------------------------------------------------- /doc/proxy_rotation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/doc/proxy_rotation.md -------------------------------------------------------------------------------- /lib/GoogleUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl.php -------------------------------------------------------------------------------- /lib/GoogleUrl/AdwordsResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/AdwordsResultSet.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Curl.php -------------------------------------------------------------------------------- /lib/GoogleUrl/DelayedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/DelayedQuery.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Delayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Delayer.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Exception.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Exception/CaptachaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Exception/CaptachaException.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Exception/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Exception/CurlException.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Exception/ProxyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Exception/ProxyException.php -------------------------------------------------------------------------------- /lib/GoogleUrl/GoogleAdwordPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/GoogleAdwordPosition.php -------------------------------------------------------------------------------- /lib/GoogleUrl/GoogleDOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/GoogleDOM.php -------------------------------------------------------------------------------- /lib/GoogleUrl/GooglePosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/GooglePosition.php -------------------------------------------------------------------------------- /lib/GoogleUrl/MilliDelayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/MilliDelayer.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Proxy/ProxyObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Proxy/ProxyObject.php -------------------------------------------------------------------------------- /lib/GoogleUrl/Proxy/StdProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/Proxy/StdProxy.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyAccessAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyAccessAdapter.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyDelayedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyDelayedInterface.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyInterface.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyPool.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyPool/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyPool/File.php -------------------------------------------------------------------------------- /lib/GoogleUrl/ProxyString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/ProxyString.php -------------------------------------------------------------------------------- /lib/GoogleUrl/SimpleProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/SimpleProxy.php -------------------------------------------------------------------------------- /lib/GoogleUrl/SimpleProxyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/lib/GoogleUrl/SimpleProxyInterface.php -------------------------------------------------------------------------------- /tests/CoreTest/NetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/CoreTest/NetTest.php -------------------------------------------------------------------------------- /tests/CoreTest/ProxyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/CoreTest/ProxyTest.php -------------------------------------------------------------------------------- /tests/CoreTest/UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/CoreTest/UrlTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/data/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/data/proxies.json -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gsouf/google-url/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------