Symfony 3 and 4 Bundle for easy update, test and use proxy list from ProxyBonanza service.
- PHP 7.0+
- Symfony 3.0+
- Guzzle Client 6.0+
- Doctrine ORM 2.5+
"require": {
"wow-apps/symfony-proxybonanza": "^2.0.1"
}
or
$ composer require wow-apps/symfony-proxybonanza
// ./app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new WowApps\ProxybonanzaBundle\WowAppsProxybonanzaBundle(),
);
// ...
return $bundles
}
# ProxyBonanza API
wow_apps_proxybonanza:
api_url: "https://api.proxybonanza.com/v1/"
api_key: "testAPIkey" # API key can be obtained in user panel in 'Account settings'.
$ echo "WOW_APPS_PROXYBONANZA_API_KEY={your api key}" >> .env
Run command:
./bin/console doctrine:schema:update --force
Run command to test your configuration:
./bin/console wowapps:proxybonanza:test
Follow news and updates in my Telegram channel @wow_apps_pro or Twitter @alexey_samara_
-
2.0.1
- Added copyrights to all php files
- Added prefix
wowapps:
to all commands - Changed container for Symfony 4 Flex
- Changed namespaces
- Removed empty controller and view
-
2.0.0
- Added compatibility for Symfony 3.1 up to 4.0