-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Sh
committed
Apr 12, 2024
1 parent
6c3913d
commit 77f05e2
Showing
10 changed files
with
103 additions
and
473 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM php:8.2-cli | ||
#COPY . /usr/src/myapp | ||
WORKDIR /var/www/html | ||
|
||
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \ | ||
php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" \ | ||
php composer-setup.php \ | ||
php -r "unlink('composer-setup.php');" | ||
|
||
COPY composer.phar /usr/local/bin/composer | ||
|
||
CMD [ "php", "./keep-running.php" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,34 @@ | ||
{ | ||
"name": "gorlovka/proxy-request-builder", | ||
"description": "building requests via proxy", | ||
"type": "library", | ||
"keywords": ["proxy", "bypass"], | ||
"authors": [ | ||
{ | ||
"name": "hohohoho", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Gorlovka\\": "src/" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "5.4" | ||
} | ||
"name": "gorlovka/proxy-request-builder", | ||
"description": "building requests via proxy", | ||
"type": "library", | ||
"keywords": [ | ||
"cloudflare bypass", | ||
"clouflare", | ||
"proxy", | ||
"free-proxy", | ||
"scan-proxy", | ||
"public-proxy", | ||
"socks-proxy", | ||
"http-proxy", | ||
"proxy-list" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Alex Sh", | ||
"email": "[email protected]" | ||
} | ||
|
||
], | ||
"scripts": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Proxyrequest\\": "src/" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": ">=5.4" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?php | ||
|
||
|
||
use Proxyrequest\ProxyRequestRotate; | ||
|
||
$proxyRequestRotate = new ProxyRequestRotate(); | ||
|
||
$proxyRequestRotate = new \Proxyrequest\ProxyRequestRotate(); | ||
|
||
echo $proxyRequestRotate->getContent(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.