887. Notable PHP package: PHPDoc PDF Output Generator
Updated on: 2019-09-04
Posted on: 2019-09-04
PHPDoc is a popular format for embedding information on PHP source code files to help documenting it.
This package can generate documentation of PHP source code in PDF format by extracting PHPDoc information that it may contain.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can generate documentation of PHP source code in PDF format by extracting PHPDoc information that it may contain.
Read this article to learn more details about how this notable PHP package works.



886. Notable PHP package: PHP Value Objects
Updated on: 2019-09-03
Posted on: 2019-09-03
Value objects are objects that contain information that is meant to be stored or retrieved from application storage containers like database servers.
This package provides traits that can easily turn any class into a value object class.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package provides traits that can easily turn any class into a value object class.
Read this article to learn more details about how this notable PHP package works.



885. Notable PHP package: PHP Unique Number Repository
Updated on: 2019-09-02
Posted on: 2019-09-02
Many applications need to use numbers to identify records of information that is stored in their databases. Those identifiers cannot have repeated values. Therefore the numbers must be unique.
It is also useful that the unique numbers are also random, so they cannot be easily predicted in a way that people with bad intentions can exploit the fact that they can anticipate future unique numbers generated by an application.
To make sure that a unique number is also randomly generated, it is necessary to verify if the number was already generated by the application, it is necessary to keep track of all numbers generated in the past.
This package provides an API for a service of repositories that keeps track of all unique numbers generated so far, thus making it easier to check available unique numbers from different parts of an application.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
It is also useful that the unique numbers are also random, so they cannot be easily predicted in a way that people with bad intentions can exploit the fact that they can anticipate future unique numbers generated by an application.
To make sure that a unique number is also randomly generated, it is necessary to verify if the number was already generated by the application, it is necessary to keep track of all numbers generated in the past.
This package provides an API for a service of repositories that keeps track of all unique numbers generated so far, thus making it easier to check available unique numbers from different parts of an application.
Read this article to learn more details about how this notable PHP package works.



884. Notable PHP package: PHP JSON Pretty Print
Updated on: 2019-08-30
Posted on: 2019-08-30
Many developers need to check values used in their applications variables. One easy way of seeing those values is to display them on a Web page.
Nowadays, many developers prefer to use the JSON format to display application variable values. PHP supports the JSON format but sometimes the output of the JSON encoding functions is not very readable.
This class provides a solution to display application variable values using the JSON format in a way that can be more readable for all developers.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Nowadays, many developers prefer to use the JSON format to display application variable values. PHP supports the JSON format but sometimes the output of the JSON encoding functions is not very readable.
This class provides a solution to display application variable values using the JSON format in a way that can be more readable for all developers.
Read this article to learn more details about how this notable PHP package works.



883. Notable PHP package: Fake PHP Admin Panel HoneyPot
Updated on: 2019-08-28
Posted on: 2019-08-28
Many sites are under attack from people that want to find security holes to be able to abuse from the server resources for some evil purpose.
This package implements a fake administration panel that can be used to make attackers believe they have found security holes on a Web site.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package implements a fake administration panel that can be used to make attackers believe they have found security holes on a Web site.
Read this article to learn more details about how this notable PHP package works.



882. Notable PHP package: PHP CodeIgniter Database Wrapper
Updated on: 2019-08-22
Posted on: 2019-08-22
CodeIgniter is a very popular framework used by many applications written in PHP.
Like many other frameworks it comes with a database abstraction library that allows accessing many different types of SQL based databases with the same function calls.
This package allows developers to use a database abstraction library without having to use the CodeIgniter framework as a whole.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Like many other frameworks it comes with a database abstraction library that allows accessing many different types of SQL based databases with the same function calls.
This package allows developers to use a database abstraction library without having to use the CodeIgniter framework as a whole.
Read this article to learn more details about how this notable PHP package works.



880. Notable PHP package: Doubles
Updated on: 2019-08-20
Posted on: 2019-08-20
One way to test applications based on classes that implement important behaviors is to create mock objects.
These are objects that behave like objects of the classes that you want to test but you can change them to make them behave according to the aspects that you want to test about the class features.
This package can be used to create mock objects by creating similar classes that have additional features that are useful for testing purposes like counting how many times among other features.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
These are objects that behave like objects of the classes that you want to test but you can change them to make them behave according to the aspects that you want to test about the class features.
This package can be used to create mock objects by creating similar classes that have additional features that are useful for testing purposes like counting how many times among other features.
Read this article to learn more details about how this notable PHP package works.



879. Notable PHP package: ATK4 PHP Debug Bar
Updated on: 2019-08-19
Posted on: 2019-08-19
DebugBar is an useful library that can be used to display interesting information for debugging purposes, so it helps developers fixing problems in their applications.
This package provides an integration of the PHP Debug Bar with applications that used the ATK4 framework, by providing collector classes that supply useful information about the applications' activity, like log data and database accesses.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package provides an integration of the PHP Debug Bar with applications that used the ATK4 framework, by providing collector classes that supply useful information about the applications' activity, like log data and database accesses.
Read this article to learn more details about how this notable PHP package works.



878. Notable PHP package: PHP MySQL Shell
Updated on: 2019-08-15
Posted on: 2019-08-15
MySQL is a very popular SQL database server used by many PHP applications. The client program, when available, can be started from the command line console and it allows you to perform any SQL queries on a given database.
This package provides a pure PHP based alternative to the MySQL client program if for some reason it is not available on the computer from which you want to perform the database queries you want to try.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package provides a pure PHP based alternative to the MySQL client program if for some reason it is not available on the computer from which you want to perform the database queries you want to try.
Read this article to learn more details about how this notable PHP package works.



877. Notable PHP package: Magento Birthday Coupon
Updated on: 2019-08-14
Posted on: 2019-08-14
Birthdays are a special dates in the lives of many people. Therefore, many e-commerce sites use that date as a reminder for people to get birthday gifts that are products being sold on the site.
To encourage more sales, some e-commerce sites provide discount coupons for people that were born on the current day.
This package can generate discount coupons for users of a e-commerce site running Magento which their birth day is on the current day.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
To encourage more sales, some e-commerce sites provide discount coupons for people that were born on the current day.
This package can generate discount coupons for users of a e-commerce site running Magento which their birth day is on the current day.
Read this article to learn more details about how this notable PHP package works.


