Difference between revisions of "PHPBOM"

From ProgClub
Jump to: navigation, search
(→‎Links: adding initial links...)
(→‎Links: updating links...)
Line 63: Line 63:
 
Links are generated with [https://www.jj5.net/sixsigma/Bugslist.php bugslist.php]:
 
Links are generated with [https://www.jj5.net/sixsigma/Bugslist.php bugslist.php]:
  
  $ bugslist --all -a= -c=s -o=sk -t=s
+
  $ bugslist --all -a= -c=s -o=sk -t=s > doc/links.wiki
  
* [http://php.net/manual/en/errorfunc.constants.php PHP error constants]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/module/63-error-handler.php?pathrev=3307#l65 63-error-handler.php]
+
* [http://php.net/manual/en/errorfunc.constants.php PHP error constants]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/module/63-error-handler.php?pathrev=3307#l65 63-error-handler.php]
* [http://stackoverflow.com/questions/10113562/pdo-mysql-use-pdoattr-emulate-prepares-or-not#10455228 ATTR_EMULATE_PREPARES recommendation]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/class/pdo/PdoMySql.php?pathrev=3307#l88 PdoMySql.php]
+
* [http://stackoverflow.com/questions/10113562/pdo-mysql-use-pdoattr-emulate-prepares-or-not#10455228 ATTR_EMULATE_PREPARES recommendation]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/class/pdo/PdoMySql.php?pathrev=3307#l88 PdoMySql.php]
* [http://stackoverflow.com/questions/18277233/pdo-closing-connection#18277327 article about closing PDO]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/class/pdo/PdoMySql.php?pathrev=3307#l521 PdoMySql.php]
+
* [http://stackoverflow.com/questions/18277233/pdo-closing-connection#18277327 article about closing PDO]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/class/pdo/PdoMySql.php?pathrev=3307#l521 PdoMySql.php]
* [http://stackoverflow.com/questions/24560881/changing-time-zone-after-connecting-to-database-using-set-time-zone MYSQL_ATTR_INIT_COMMAND]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/class/pdo/PdoMySql.php?pathrev=3307#l141 PdoMySql.php]
+
* [http://stackoverflow.com/questions/24560881/changing-time-zone-after-connecting-to-database-using-set-time-zone MYSQL_ATTR_INIT_COMMAND]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/class/pdo/PdoMySql.php?pathrev=3307#l141 PdoMySql.php]
* [http://stackoverflow.com/questions/6346674/pdo-support-for-multiple-queries-pdo-mysql-pdo-mysqlnd#6461110 PDO support for multiple queries]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/class/pdo/PdoMySql.php?pathrev=3307#l399 PdoMySql.php]
+
* [http://stackoverflow.com/questions/6346674/pdo-support-for-multiple-queries-pdo-mysql-pdo-mysqlnd#6461110 PDO support for multiple queries]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/class/pdo/PdoMySql.php?pathrev=3307#l399 PdoMySql.php]
* [http://www.binarytides.com/php-check-running-cli/ CLI detection]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/module/07-defaults.php?pathrev=3307#l11 07-defaults.php]
+
* [http://www.binarytides.com/php-check-running-cli/ CLI detection]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/module/07-defaults.php?pathrev=3307#l11 07-defaults.php]
* [https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_Redirection HTTP Redirection Status Codes]: [https://svn.jj5.net/jjrepo/jj5-bin/trunk/bin/bugslist.d/src/module/92-http.php?pathrev=3307#l428 92-http.php]
+
* [https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_Redirection HTTP Redirection Status Codes]: [https://svn.progclub.org/pcrepo/phpbom/branches/0.1/src/module/92-http.php?pathrev=3307#l428 92-http.php]
  
 
= Specifications =
 
= Specifications =

Revision as of 06:45, 23 February 2017

PHPBOM is the ProgClub PHP web-framework and toolkit. That's the software we use to develop web applications and web services in PHP. It's a mashup of bits and pieces John thinks are useful when delivering software for the web! For other projects see projects.

Status

We use semantic versioning. Latest production version: unreleased. Latest development version: 0.1.0.

See tasks for work that still needs to be done.

Motivation

Why this software? Because it's a good place to store useful bits and pieces that I (we?) probably want to reuse across all the web projects that I (we?) do.

Administration

Contributors

Members who have contributed to this project. Newest on top.

All contributors have agreed to the terms of the Contributor License Agreement. This excludes any upstream contributors who tend to have different administrative frameworks.

Copyright

Copyright © 2017, Contributors.

License

Licensed under the MIT license.

Components

Libraries, tools, services or media from third parties used under license:

Resources

Downloads

There aren't any downloads yet because we're still under development on our 0.1 version. When we release 1.0 we will (hopefully!) provide tarball packages. Stay tuned.

Source code

The repository can be browsed online:

https://www.progclub.org/pcrepo/phpbom/branches/0.1

The latest stable released version of the code will be available from:

https://www.progclub.org/svn/pcrepo/phpbom/tags/latest/0.1

Or if you want the latest version for development purposes:

https://www.progclub.org/svn/pcrepo/phpbom/branches/0.1

Links

Links are generated with bugslist.php:

$ bugslist --all -a= -c=s -o=sk -t=s > doc/links.wiki

Specifications

Functional specification

The functional specification describes what the project does.

The software is a web framework and toolkit for delivering web applications and web services in PHP.

Technical specification

The technical specification describes how the project works.

TODO: add a bit of a tech-spec.

Notes

See versioning for information on our semantic version numbers.

Notes for implementers

If you are interested in incorporating this software into your project, here's what you need to know:

Grab a recent copy of the code from svn into a lib/phpbom-0.1 directory in your project. Then depending on what framework or features you want include the appropriate files. For frameworks see src/framework, for utilities see src/util, and for modules see src/module. Note that generally classes cannot be used alone, so if you want support from a class load its respective module.

Notes for developers

If you're looking to set up a development environment for this project here's what you need to know:

So you want to hack on PHPBOM? Cool! Get in touch with John and we'll take it from there!

Notes for ProgClub administrators

To release a version of this project use the pcrepo-branch-release script from the jj5-bin project:

$ pcrepo-branch-release phpbom $MAJOR.$MINOR $PATCH

Where:

$MAJOR = the major version number, presently 0
$MINOR = the minor version number, presently 1
$PATCH = the patch number for this release

See status for last production release.

Tasks

TODO

Things to do, in rough order of priority:

  • create a TODO list... :P

Done

Stuff that's done. Latest stuff on top.

  • JE 2017-02-23: created project page
  • JE 2016-12-16: created the project in svn