Skip to content

Commit befd65d

Browse files
Basic url builder
1 parent 7884f24 commit befd65d

File tree

5 files changed

+627
-1
lines changed

5 files changed

+627
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ composer.phar
44
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
55
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
66
# composer.lock
7+
/nbproject/private/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# url-builder
2-
Builds URL's the way pecl_http does thi
2+
Builds URL's the way pecl_http does this

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "gisostallenberg/url-builder",
3+
"description": "Builds URL's the way pecl_http does this",
4+
"type": "library",
5+
"require": {
6+
"php": "^5.3.9"
7+
},
8+
"license": "MIT",
9+
"authors": [
10+
{
11+
"name": "Giso Stallenberg",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"autoload": {
16+
"psr-4": {
17+
"GisoStallenberg\\UrlBuilder\\": "src/"
18+
}
19+
}
20+
}

composer.lock

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)