-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 613446d
Showing
8 changed files
with
1,886 additions
and
0 deletions.
There are no files selected for viewing
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,3 @@ | ||
-Net:Browser - Custom requests with data-content through CURLOPT_POST (tested-working) | ||
Net:Browser - CURLOPT_RETURNTRANSFER with CURLOPT_FILE | ||
Net:Browser - Overall refactor the API with newfound knowledge. |
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,14 @@ | ||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
|
||
Copyright (C) 2004 Sam Hocevar <[email protected]> | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO. | ||
|
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,36 @@ | ||
{ | ||
"name": "anrdaemon/net-browser", | ||
"description": "A very thin OOP cURL wrapper with runtime cookie persistence", | ||
"license": "WTFPL", | ||
"authors": [ | ||
{ | ||
"name": "Andrey Repin", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^5.3.6 || ^7.0" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-trunk": "0.x-dev", | ||
"dev-master": "0.x-dev" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"AnrDaemon\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"AnrDaemon\\Tests\\": "test/" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7" | ||
}, | ||
"config": { | ||
"bin-dir": "bin" | ||
} | ||
} |
Oops, something went wrong.