Skip to content

Commit 82e2f7f

Browse files
committed
Initial setup
0 parents  commit 82e2f7f

File tree

8 files changed

+2175
-0
lines changed

8 files changed

+2175
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/node_modules
2+
/public/hot
3+
/vendor
4+
.env
5+
.env.backup
6+
.phpunit.result.cache
7+
Homestead.json
8+
Homestead.yaml
9+
npm-debug.log
10+
yarn-error.log
11+
/.idea
12+
/.vscode
13+
/coverage

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Small package for YouTube tutorial
2+
3+
This small package is for use with the upcoming YouTube tutorial on PHP package development tricks and tips
4+
5+
Stay tuned!

composer.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "zoneconnect/just-jokes",
3+
"description": "A number of funny jokes bro",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Zoneconnect\\JustJokes\\": "src/"
9+
}
10+
},
11+
"autoload-dev": {
12+
"psr-4": {
13+
"Zoneconnect\\JustJokes\\Tests\\": "tests/"
14+
}
15+
},
16+
"authors": [
17+
{
18+
"name": "Kenny James",
19+
"email": "kenny@zone-connect.com"
20+
}
21+
],
22+
"require-dev": {
23+
"phpunit/phpunit": "^9.5"
24+
}
25+
}

0 commit comments

Comments
 (0)