Skip to content

Commit 9774a8c

Browse files
author
Greg Bowler
committed
Initial commit
0 parents  commit 9774a8c

File tree

4 files changed

+2923
-0
lines changed

4 files changed

+2923
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor/
2+
/.idea/
3+
/style/.sass-cache style/
4+
/www/style.css
5+
/www/script.js
6+
*.phar

composer.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "webengine-blueprints/empty",
3+
"description": "A blueprint with only the necessary files in place.",
4+
5+
"minimum-stability": "dev",
6+
7+
"require": {
8+
"phpgt/webengine": "dev-master"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "7.*"
12+
},
13+
14+
"autoload": {
15+
"psr-4": {
16+
"App\\": "./class"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"App\\Test\\": "./test/unit"
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)