Skip to content

Commit

Permalink
1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecc-business-account committed Mar 4, 2023
1 parent ac8b0c6 commit a157c83
Show file tree
Hide file tree
Showing 158 changed files with 26,060 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/examples export-ignore
/vendor export-ignore
/docs export-ignore
/tests export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/phpunit.xml export-ignore
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/.idea
composer.lock
vendor/
tests/resources/compiled/
\.php_cs\.cache
/.phpunit.result.cache
/sync.ffs_db
11 changes: 11 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ router.php?req=$1 [L,QSA]
RewriteRule ^$ router.php?req=$1 [L,QSA]
RewriteRule ^.*\.(bat|sh)$ - [F,L,NC]

</IfModule>
Loading

0 comments on commit a157c83

Please sign in to comment.