Skip to content
This repository was archived by the owner on Jan 19, 2018. It is now read-only.

Commit db13b3a

Browse files
committed
First commit
0 parents  commit db13b3a

File tree

76 files changed

+7321
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+7321
-0
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
# Unix-style newlines with a newline ending every file
6+
[*]
7+
charset = utf-8
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
indent_style = space
12+
indent_size = 2
13+
14+
[*.md]
15+
trim_trailing_whitespace = false
16+
17+
[*.{php,json}]
18+
indent_size = 4

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor
2+
temp
3+
.DS_Store

.htaccess

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
RewriteEngine On
2+
3+
# Some hosts may require you to use the `RewriteBase` directive.
4+
# If you need to use the `RewriteBase` directive, it should be the
5+
# absolute physical path to the directory that contains this htaccess file.
6+
#
7+
# RewriteBase /
8+
9+
RewriteCond %{REQUEST_FILENAME} !-d
10+
RewriteCond %{REQUEST_FILENAME} !-f
11+
RewriteRule ^ index.php [QSA,L]
12+
13+
<IfModule mod_deflate.c>
14+
AddOutputFilterByType DEFLATE application/json
15+
</IfModule>

composer.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"autoload": {
3+
"psr-4": {
4+
"Wallace\\": ["src/", "test/"]
5+
}
6+
},
7+
"require": {
8+
"slim/slim": "^2.6",
9+
"php-activerecord/php-activerecord": "^1.1",
10+
"sentry/sentry": "^1.6"
11+
},
12+
"require-dev": {
13+
"phpunit/phpunit": "^6.0",
14+
"squizlabs/php_codesniffer": "2.*",
15+
"sebastian/phpcpd": "^3.0"
16+
}
17+
}

0 commit comments

Comments
 (0)