Skip to content

Commit aa54f72

Browse files
committed
Basic functionality done
1 parent 779381b commit aa54f72

File tree

8 files changed

+691
-0
lines changed

8 files changed

+691
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

composer.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "nulpunkt/php-stub",
3+
"type": "library",
4+
"description": "Small stubbing library for making dumb colaborators.",
5+
"keywords": ["stubs"],
6+
"homepage": "http://github.com/nulpunkt/php-stub",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Jesper Skovgård Nielsen",
11+
"email": "[email protected]",
12+
"homepage": "http://runlevel0.dk",
13+
"role": "Developer"
14+
}
15+
],
16+
"require": {
17+
"php": ">=5.4.0"
18+
},
19+
"require-dev": {
20+
"phpunit/phpunit": "3.7.*",
21+
"squizlabs/php_codesniffer": "1.*"
22+
},
23+
"autoload": {
24+
"psr-0": {
25+
"Nulpunkt": "src"
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)