-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4bca0c5
Showing
2,365 changed files
with
314,520 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
config/private.key | ||
vendor | ||
!var/databases/commands.yaml | ||
var |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Marquand.pro | ||
Terminal web browser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/env/php | ||
<?php | ||
require '../vendor/autoload.php'; | ||
|
||
use Mediashare\Modules\Arguments; | ||
use Mediashare\Modules\Output; | ||
use Kzu\Command; | ||
|
||
Class Console { | ||
use Command; | ||
public function run() { | ||
Command::$arguments = new Arguments(); | ||
Command::$output = new Output(); | ||
Command::run(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "kzu/kzu", | ||
"type": "project", | ||
"license": "AGPL-3.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "MarquandT", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Kzu\\": "src/Kzu", | ||
"App\\": "src/App" | ||
} | ||
}, | ||
"require-dev": { | ||
"tracy/tracy": "^2.8" | ||
}, | ||
"require": { | ||
"kzu/web": "*", | ||
"mailjet/mailjet-apiv3-php": "^1.5", | ||
"coinbase/coinbase": "^2.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
env: dev | ||
storage: | ||
database: | ||
directory: /var/databases | ||
session: | ||
lifetime: +7days | ||
twig: | ||
debug: true | ||
cache: false # /var/cache | ||
template.directory: /template | ||
routes: | ||
index: | ||
path: / | ||
controller: 'App\Controller\Main::index' | ||
|
||
register: | ||
path: /register | ||
controller: 'Kzu\Controller\Authentification::register' | ||
login: | ||
path: /login | ||
controller: 'Kzu\Controller\Authentification::login' | ||
logout: | ||
path: /logout | ||
controller: 'Kzu\Controller\Authentification::logout' | ||
admin: | ||
path: /admin | ||
controller: 'Kzu\Controller\Admin::index' | ||
admin_config: | ||
path: '/admin/config/{config}' | ||
controller: 'Kzu\Controller\Admin::config' | ||
admin_database: | ||
path: '/admin/database/{database}' | ||
controller: 'Kzu\Controller\Admin::database' | ||
|
||
error_404: | ||
path: /error/404 | ||
controller: 'Kzu\Controller\Error::error_404' | ||
|
Oops, something went wrong.