Skip to content

Commit

Permalink
Imported revision 1046
Browse files Browse the repository at this point in the history
  • Loading branch information
AnrDaemon committed Mar 25, 2020
0 parents commit 613446d
Show file tree
Hide file tree
Showing 8 changed files with 1,886 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .todo
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.
14 changes: 14 additions & 0 deletions LICENSE
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.

36 changes: 36 additions & 0 deletions composer.json
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"
}
}
Loading

0 comments on commit 613446d

Please sign in to comment.