Skip to content

Integration of php api server #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/webcache
debug.log
debug.log
/www/vendor
/www/*.db
File renamed without changes.
36 changes: 0 additions & 36 deletions README.md

This file was deleted.

14 changes: 7 additions & 7 deletions settings.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
"log_file": "debug.log"
},
"main_window": {
"title": "HFX Desktop",
"title": "IO API Server",
"icon": "",
"default_size": [800, 600],
"minimum_size": [640, 480],
@@ -30,8 +30,8 @@
"default_size": [800, 600]
},
"web_server": {
"listen_on": ["127.0.0.1", 60106],
"www_directory": "www/public",
"listen_on": ["127.0.0.1", 60135],
"www_directory": "www",
"index_files": ["index.php"],
"cgi_interpreter": "php/php-cgi.exe",
"cgi_extensions": ["php"],
@@ -52,11 +52,11 @@
"enable_downloads": true,
"context_menu": {
"enable_menu": true,
"navigation": false,
"print": false,
"view_source": false,
"navigation": true,
"print": true,
"view_source": true,
"open_in_external_browser": true,
"devtools": false
"devtools": true
}
}
}
7 changes: 0 additions & 7 deletions www/.env

This file was deleted.

6 changes: 0 additions & 6 deletions www/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions www/assets/css/style.css

This file was deleted.

5 changes: 0 additions & 5 deletions www/assets/js/script.js

This file was deleted.

8 changes: 0 additions & 8 deletions www/bin/console

This file was deleted.

24 changes: 4 additions & 20 deletions www/composer.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,15 @@
{
"name": "fadil/hfx",
"description": "Basic Micro MVC",
"description": "Micro app - one file API",
"authors": [
{
"name": "fadilxcoder",
"email": "fadil@xcoder.dvlpr"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"symfony/http-kernel": "^5.2",
"symfony/http-foundation": "^5.2",
"vlucas/phpdotenv": "^5.3",
"twig/twig": "^3.0",
"php-di/php-di": "^6.3",
"symfony/asset": "^5.2",
"nikic/fast-route": "^1.3",
"mnapoli/silly": "^1.7",
"fakerphp/faker": "^1.19",
"robmorgan/phinx": "^0.12.12",
"fadilxcoder/chrome-php-logger": "^1.0"
"ramsey/uuid": "^4.7"
},
"require-dev": {
"filp/whoops": "^2.13"
}
"repositories": [
]
}
Loading