GithubHelp home page GithubHelp logo

Add docs to readthedocs.org about minphp HOT 6 OPEN

clphillips avatar clphillips commented on September 7, 2024
Add docs to readthedocs.org

from minphp.

Comments (6)

naja7host avatar naja7host commented on September 7, 2024

is there any wiki or docs that we can collaborate . i think is ipperative to mention in case of using database it must have a session table that can minphp store sessions , a chemaforthis

CREATE TABLE sessions (
id varchar(64) COLLATE utf8_unicode_ci NOT NULL,
expire datetime NOT NULL,
value text COLLATE utf8_unicode_ci,
PRIMARY KEY (id),
KEY expire (expire)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

from minphp.

clphillips avatar clphillips commented on September 7, 2024

The SQL is actually available in /components/session/session.sql. However, minphp is going through a major refactor for version 1.0, as well as 2.0, so changes are coming!

from minphp.

naja7host avatar naja7host commented on September 7, 2024

can i imagine namespace will be sued in next major release ?

from minphp.

naja7host avatar naja7host commented on September 7, 2024

also , the next major release need our own code to be changed also ? i'm working now all my project with minphp . so have you any idea tips to make my code easy or compatible with next releases ?

from minphp.

clphillips avatar clphillips commented on September 7, 2024

The next version of minphp (1.0.0) will use namespaces, but will be 100% backwards compatible with the current version (0.x). We're able to do that by bridging classes from the global namespace to specific namespaces.

So you won't need to make any changes, but there will be some functionality deprecated in 1.0.0, that will be removed in 2.0.0, since 2.0.0 won't have any classes in the global namespace.

from minphp.

clphillips avatar clphillips commented on September 7, 2024

so have you any idea tips to make my code easy or compatible with next releases ?

Just use PSR-2 formatting ;)

from minphp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.