Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danishi/myframework
オレオレフレームワーク
https://github.com/danishi/myframework
bootstrap4 jquery pdo php7 smarty
Last synced: about 3 hours ago
JSON representation
オレオレフレームワーク
- Host: GitHub
- URL: https://github.com/danishi/myframework
- Owner: danishi
- License: mit
- Created: 2019-05-26T10:49:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-29T18:34:09.000Z (over 1 year ago)
- Last Synced: 2024-05-02T04:16:32.481Z (7 months ago)
- Topics: bootstrap4, jquery, pdo, php7, smarty
- Language: PHP
- Homepage: https://www.apps.danishi.net/MyFramework/sample
- Size: 475 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MyFramework
PHP Web MVC Framework
所謂オレオレフレームワーク
## 使っているもの(using)
* bootstrap4
* jQuery
* PHP7
* * PDO
* * composer
* * smarty
* * monolog## フォルダ階層(directory hierarchy)
```
MyFramework
├─app
│ │ app.ini
│ │
│ ├─controller
│ │ controller.php
│ │ sample.php
│ │
│ ├─model
│ │ │ model.php
│ │ │ mytable.php
│ │ │
│ │ ├─ddl
│ │ │ mytable.sql
│ │ │
│ │ └─sqlite
│ │ sample.db
│ │
│ ├─utility
│ │ utility.php
│ │
│ └─view
│ │ sample.tpl
│ │
│ ├─template
│ │ footer.tpl
│ │ foot_tag.tpl
│ │ header.tpl
│ │ head_tag.tpl
│ │
│ └─view_c
│
├─logs
│
├─vendor
└─webroot
│ .htaccess
│ index.php
│
├─css
│ bootstrap-grid.css
│ bootstrap-grid.css.map
│ bootstrap-grid.min.css
│ bootstrap-grid.min.css.map
│ bootstrap-reboot.css
│ bootstrap-reboot.css.map
│ bootstrap-reboot.min.css
│ bootstrap-reboot.min.css.map
│ bootstrap.css
│ bootstrap.css.map
│ bootstrap.min.css
│ bootstrap.min.css.map
│ style.css
│
└─js
bootstrap.bundle.js
bootstrap.bundle.js.map
bootstrap.bundle.min.js
bootstrap.bundle.min.js.map
bootstrap.js
bootstrap.js.map
bootstrap.min.js
bootstrap.min.js.map
jquery-3.4.1.min.js
```