top of page

simple php framework

Writer's picture: Askao Ahmed SaadAskao Ahmed Saad

simple php mvc framework with simple blog example

tools :- php7.1, composer, phpunit, mysql, docker, bootstrap





├── app

│ ├── application

│ │ ├── controllers

│ │ ├── models

│ │ ├── repositories

│ │ ├── validators

│ │ └── views

│ ├── composer.json

│ ├── composer.lock

│ ├── config

│ │ ├── container_dependancies.php

│ │ ├── env_test.php

│ │ ├── env_web.php

│ │ ├── routes.php

│ │ ├── test.php

│ │ └── web.php

│ ├── core

│ │ ├── database

│ │ ├── helpers

│ │ └── lib

│ ├── migrations

│ │ ├── create_tables.sql

│ │ └── Insert_dummy_data.sql

│ ├── runtime

│ │ ├── logs

│ │ └── tmp

│ ├── tests

│ │ ├── fixtures

│ │ ├── functional

│ │ └── unit

│ ├── vendor

│ │ ├── autoload.php

│ │ ├── bin

│ │ ├── composer

│ │ ├── doctrine

│ │ ├── fzaninotto

│ │ ├── league

│ │ ├── myclabs

│ │ ├── phar-io

│ │ ├── phpdocumentor

│ │ ├── phpspec

│ │ ├── phpunit

│ │ ├── sebastian

│ │ ├── theseer

│ │ ├── vlucas

│ │ └── webmozart

│ └── web

│ ├── assets

│ ├── css

│ ├── index.php

│ ├── index-test.php

│ ├── js

│ └── media

├── docker-compose.yml

├── env

│ ├── cert

│ ├── docker

│ │ └── Dockerfile

│ ├── entrypoint

│ │ └── entrypoint.sh

│ ├── mysql_data

│ │ ├── auto.cnf

│ │ ├── ca-key.pem

│ │ ├── ca.pem

│ │ ├── client-cert.pem

│ │ ├── client-key.pem

│ │ ├── ib_buffer_pool

│ │ ├── ibdata1

│ │ ├── ib_logfile0

│ │ ├── ib_logfile1

│ │ ├── ibtmp1

│ │ ├── mysql

│ │ ├── performance_schema

│ │ ├── private_key.pem

│ │ ├── public_key.pem

│ │ ├── server-cert.pem

│ │ ├── server-key.pem

│ │ └── sys

│ ├── nginx

│ │ └── site.conf

│ └── php

│ └── custom.ini

└── README.md


 
 
 

Recent Posts

See All

askao newsbar wordpress plugin

News bar plugin for wordpress en/ar copy askao_news_bar folder in path: wp-content/plugins/ from wordpress Admin Panel Categories...

Comments


Post: Blog2_Post
bottom of page