Skip to content

Commit 72ec9d3

Browse files
SebastianSebastian
authored andcommitted
Initial commit
0 parents  commit 72ec9d3

File tree

11 files changed

+2049
-0
lines changed

11 files changed

+2049
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
/vendor

assets/image-maker/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!watermark.png

assets/image-maker/watermark.png

3.86 KB
Loading

assets/post/01.jpg

60.7 KB
Loading

composer.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"require": {
3+
"intervention/image": "^2.3"
4+
},
5+
"require-dev": {
6+
"phpunit/phpunit": "^5.4",
7+
"mockery/mockery": "^0.9.5",
8+
"mikey179/vfsStream": "^1.6"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"App\\": "src/"
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)