Skip to content

Commit a157c83

Browse files
1.2
1 parent ac8b0c6 commit a157c83

File tree

158 files changed

+26060
-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.

158 files changed

+26060
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/examples export-ignore
2+
/vendor export-ignore
3+
/docs export-ignore
4+
/tests export-ignore
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/phpunit.xml export-ignore

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/.idea
2+
composer.lock
3+
vendor/
4+
tests/resources/compiled/
5+
\.php_cs\.cache
6+
/.phpunit.result.cache
7+
/sync.ffs_db

.htaccess

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<IfModule mod_rewrite.c>
2+
Options +FollowSymLinks
3+
RewriteEngine On
4+
5+
RewriteCond %{REQUEST_FILENAME} !-d
6+
RewriteCond %{REQUEST_FILENAME} !-f
7+
RewriteRule ^(.*)$ router.php?req=$1 [L,QSA]
8+
RewriteRule ^$ router.php?req=$1 [L,QSA]
9+
RewriteRule ^.*\.(bat|sh)$ - [F,L,NC]
10+
11+
</IfModule>

0 commit comments

Comments
 (0)