FOSSBilling is a free and open-source billing and client management solution designed for hosting businesses and other online service providers. It automates invoicing, payment processing, and client management while being extensible and easily integrable with server management software and payment gateways. The project is primarily written in PHP with modern frontend technologies.
- Backend: PHP 8.3+ with dependencies managed by Composer. Key libraries include:
- Symfony Components: Console, cache, filesystem, HTTP client, and other core functionalities. See
composer.jsonfor a list of imported components.- Prefer Symfony components wherever you can.
- Use
Filesystem,Path, andFinderfor filesystem operations instead of native PHP functions (e.g.,$filesystem->exists()instead offile_exists(),Finderinstead ofglob()).
- Twig: Template engine for rendering views
- API endpoints are injected as parameters to Twig. See the "Interacting with the FOSSBilling API" section.
- Twig environments are created via
TwigFactoryatsrc/library/FOSSBilling/Twig/TwigFactory.php. - Three environment types: admin, client, and email (sandboxed for security).
- Email templates use a sandboxed environment (
EmailPolicy.php) that restricts allowed tags/filters/functions.
- RedBeanPHP: ORM for database interactions in legacy modules.
- Doctrine DBAL/ORM: ORM and DBAL for modern modules.
- FOSSBilling is in the process of migrating modules and core parts from RedBeanPHP to Doctrine one by one.
- The entity manager is available as
$di['em']. It comes from the EntityManagerFactory in/src/library/FOSSBilling/Doctrine/EntityManagerFactory.php. - Entities and repositories reside under
/src/modules/*/Entity/{Entity}.phpand/src/modules/*/Repository/{EntityRepository}.php. - The FOSSBilling project is in the process of gradually phasing out RedBeanPHP in favor of Doctrine ORM.
- When writing new pieces of code, avoid RedBeanPHP.
- If you are assisting with the migration from RedBeanPHP to Doctrine, do your best to keep compatibility with the existing table structure.
- When refactoring API endpoints, check how the
$di['pager']works insrc/library/FOSSBilling/Pagination.php.paginateDoctrineQuery()is the replacement forgetPaginatedResultSet().
- Monolog: Logging framework. Used via
$di['logger'](/src/library/FOSSBilling/Monolog.php). - dompdf: PDF generation for invoices and documents
- Pimple: Dependency injection container, see
src/di.php.
- Symfony Components: Console, cache, filesystem, HTTP client, and other core functionalities. See
- Frontend: Modern JavaScript and CSS with npm package management. Key dependencies include:
- Tabler.io: CSS framework for responsive design, based on Bootstrap 5
- Tom Select: Enhanced select boxes with search and tagging
- Autosize: Automatic textarea resizing
- Flag Icons: Country flag icon library
- Use vanilla JavaScript for all JS code.
- Build Tools:
- esbuild: Fast JavaScript/CSS bundler and minifier
- Sass: CSS preprocessing
- PostCSS with Autoprefixer: CSS post-processing
- svg-sprite: SVG sprite generation for icons
- Testing:
- PHPUnit: Unit and integration testing framework
- Code Quality & Analysis:
- PHP-CS-Fixer: PSR-12 coding standards enforcement
- Rector: Automated PHP code refactoring and modernization
- PHPStan: Static analysis for PHP code
FOSSBilling follows a modular architecture with clear separation of concerns:
- Core Application: Located in
src/directory containing the main application logic - Modules: Located in
src/modules/- Two types of modules exist:- Service Modules: Represent products that can be sold (e.g., hosting packages, downloadable products). These modules' names must start with "Service", such as "Servicehosting".
- Extension Modules: Extend FOSSBilling with additional functionality
- Module templates are organized in
templates/admin/,templates/client/, andtemplates/email/subdirectories.
- Themes: Located in
src/themes/for customizing the user interface - Libraries: Core libraries and third-party integrations in
src/library/ - Configuration: Environment-specific configurations and dependency injection setup
The application uses a modern PHP architecture with dependency injection, event-driven components, and a clean separation between business logic and presentation layers.
- PHP 8.3 or higher with required extensions:
- curl, intl, mbstring, pdo, zlib
- Composer for PHP dependency management
- Node.js and npm for frontend asset management
- MySQL/MariaDB database server
Important: If PHP is not installed or configured on the system, try using ddev to manage the development environment and run PHP/Composer commands.
Install PHP dependencies with Composer:
composer installInstall Node.js dependencies with npm:
npm installFOSSBilling uses esbuild for fast asset compilation. Build frontend assets for themes and modules:
npm run buildThis command builds assets for:
admin_defaultthemehuragatheme
Build scripts are defined in each theme's package.json and use esbuild.mjs for configuration:
# Build only themes
npm run build-themes
# Build specific theme (uses workspace scripts)
npm run build-admin_default
npm run build-huragaTheme Structure:
- admin_default: Uses
esbuild.mjswith SVG sprite generation, SCSS compilation, and multiple asset types - huraga: Uses simplified
esbuild.mjsfor basic JS/CSS bundling - Theme-owned editor assets: Rich text editor bundles are built within the relevant theme instead of a shared module
Development Mode:
# Watch mode for active development (rebuilds on file changes)
cd src/themes/admin_default && npm run dev
cd src/themes/huraga && npm run devPHPUnit Tests: Run the PHP test suite using PHPUnit:
./src/vendor/bin/phpunitThe project has two test suites:
- Library Tests: Located in
tests-legacy/library/for testing core library functionality - Module Tests: Located in
tests-legacy/modules/for testing individual modules
PHP-CS-Fixer: Format PHP code according to PSR-12 standards:
./src/vendor/bin/php-cs-fixer fixRector: Modernize and refactor PHP code automatically:
./src/vendor/bin/rectorPHPStan: Run static analysis to catch potential issues:
./src/vendor/bin/phpstan analyse- PHP: Follows PSR-12 coding standard
- Use PHP-CS-Fixer to automatically format code:
./vendor/bin/php-cs-fixer fix - Static analysis with PHPStan helps catch potential issues
- Use PHP-CS-Fixer to automatically format code:
- Frontend: Modern JavaScript (ES6+) and Sass for styling. Avoid jQuery.
- Commit Messages: Follow the project's commit message conventions detailed in
CONTRIBUTING.md
src/
├── config-sample.php # Sample configuration file
├── di.php # Dependency injection configuration
├── index.php # Main entry point
├── console.php # CLI application entry point
├── cron.php # Scheduled tasks entry point
├── library/ # Core libraries and third-party integrations
├── modules/ # Application modules (50+ modules)
├── themes/ # UI themes (admin_default, huraga)
├── data/ # Runtime data (cache, logs, uploads)
├── install/ # Installation scripts and assets
└── vendor/ # Composer dependencies
tests/ # Modern test structure
tests-legacy/ # Legacy PHPUnit tests
-
admin_defaulttheme icons are compiled from thesrc/themes/admin_default/assets/iconsdirectory and can be referenced from within the Twig template like so:<svg class="icon"> <use xlink:href="#icon-name" /> </svg>
-
Check the available Twig filters and functions in
src/library/FOSSBilling/Twig/Extension/FOSSBillingExtension.phpandsrc/library/FOSSBilling/Twig/Extension/LegacyExtension.php. Use these where applicable.ApiExtension.phpprovidesfb_api,fb_api_form,fb_api_linkhelpers and|api_urlfilter.- Twig extensions use PHP 8 attributes (
#[AsTwigFunction],#[AsTwigFilter]).
-
Global Twig variables include:
app_area('admin' or 'client'),current_theme,guest,CSRFToken,request,FOSSBillingVersion. -
Email templates are rendered in a sandboxed Twig environment. Use
|markdown_to_htmlfilter for markdown content. The sandbox restricts available tags/filters - seeEmailPolicy.phpfor allowed operations.
- API is injected directly into the Twig templates. You do not need to use fetch/AJAX to read from the API.
- When applicable, APIs are injected as Twig parameters
admin,client, andguest. - Guest API is always available. Admin and client APIs are injected if an admin or a client is logged in.
- To access data, use this format:
{{ role.module_endpoint(optional_parameters) }}. A few examples:{{ admin.support_ticket_get_list({ 'status': 'active' }) }}=> Reads into /api/admin/support/ticket_get_list?status=active{{ client.order_get({ 'id': 1 }) }}=> Reads into /api/client/order/get?id=1{{ guest.system_version }}=> Reads into /api/guest/system/version
- When applicable, APIs are injected as Twig parameters
- If you need to interact with the API for means other than reading data, use the FOSSBilling API Wrapper in
src/library/Api/API.js. It providesAPI.admin,API.client, andAPI.guestnamespaces withget,post,put,delete,patchmethods. CSRFToken is automatically appended. - For HTML forms that submit to the API, use the
fb_api_form()Twig function. Example:<form {{ fb_api_form({message: 'Saved'|trans}) }}> - For links that trigger API calls, use the
fb_api_link()Twig function. Example:<a href="..." {{ fb_api_link({modal: {type: 'confirm'}}) }}> - Use the
|api_urlfilter to generate API URLs. Example:{{ 'client/delete'|api_url({id: 1}) }}
- Read Documentation: Start with
CONTRIBUTING.mdfor detailed guidelines - Development Setup: Install dependencies and build assets
- Code Quality: Run tests and code quality tools before submitting
- Module Development: Understand the distinction between Service modules and Extension modules
- Testing: Write tests for new functionality using PHPUnit
README.md: Project overview, installation instructions, and general informationCONTRIBUTING.md: Comprehensive contribution guidelines and development workflowcomposer.json: PHP dependencies, scripts, and project metadatapackage.json: Node.js dependencies, build scripts, and workspace configurationphpunit.xml.dist: PHPUnit testing configurationphpstan.neon: PHPStan static analysis configuration.php-cs-fixer.dist.php: PHP-CS-Fixer coding standards configurationrector.php: Rector refactoring rules configurationsrc/config-sample.php: Sample application configuration filesrc/di.php: Dependency injection container setup
- Documentation: fossbilling.org/docs
- Issues: GitHub Issues
- PHP Version: Requires PHP 8.3 or higher
- Database: Requires MySQL/MariaDB database server
- License: Apache License 2.0