Skip to content
/ phi-php Public

Phi φ is a modern superset of PHP that introduces strong typing, advanced OOP features, and a Blade-inspired templating system while maintaining full PHP compatibility.

License

Notifications You must be signed in to change notification settings

phi-x/phi-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phi φ

Phi is a modern transpiler that enhances PHP with strong typing, object-oriented improvements, and an integrated Blade-inspired templating system.

packagist-version-icon packagist-download-icon


Quick Start

Install Phi

Install Phi from Composer with:

composer global require phi-x/phi:dev-main

Try Phi

Create a hello.phi file:

Hello, $name!

Run it with:

phi run hello --name=Phi

This displays: Hello, Phi!


What is Phi?

Phi is a next-generation PHP transpiler that introduces strong typing, advanced object-oriented programming features, and an optimized templating system. By providing a more structured and scalable approach to PHP development, Phi helps developers write cleaner, more maintainable, and error-resistant code.

Why Phi?

  • Enhances PHP without breaking compatibility: Phi allows developers to gradually adopt new features without rewriting existing PHP projects.
  • Eliminates the need for PHPDoc and annotations: Types are checked at both transpilation and runtime, reducing redundant documentation.
  • Brings TypeScript-like flexibility: Supports both static and dynamic typing for a more robust development experience.
  • Integrates a powerful templating engine: A Blade-inspired syntax simplifies HTML rendering for modern web applications.

Features

  • Strong Typing: Enforce and validate types at both compile-time and runtime, reducing bugs early in development.
  • Advanced Object-Oriented Features: Provides enhanced OOP capabilitie s beyond native PHP, making code more scalable and maintainable.
  • Dynamic and Extensible Typing: A flexible type system inspired by TypeScript, allowing both static and dynamic typing.
  • Integrated Templating Engine: A Blade-like system for cleaner, more structured HTML rendering, similar to Laravel's Blade.
  • Full PHP Compatibility: Any valid PHP code is also valid Phi code, enabling seamless integration into existing projects.
  • No Need for PHPDoc & Annotations: Types are checked directly in the code, reducing boilerplate and improving readability.

Requirements

  • PHP 8.4 or above (at least 8.4.3 recommended to avoid potential bugs)
  • Composer
  • Git
  • Node with NPM (Optional)

Installation

composer global require phi-x/phi:dev-main
npm i -g @phi-x/phi@latest

Usage

Phi transpiles .phi files into .php, enabling strong typing and additional features while maintaining PHP compatibility.

Example Command

phi source.phi

This converts source.phi into a PHP file, optimized for performance and execution.

Example Code

<?php
// Strongly-typed function in Phi
function greet<T extends string>(T $name): T {
    return "Hello, $name!";
}

echo greet("World");

Transpiled PHP Code

<?php

function greet(string $name): string {
    return "Hello, $name!";
}

echo greet("World");

?>

Phi ensures that type mismatches are caught at transpilation, making PHP development safer and more efficient.


Contributing

We welcome contributions! Whether it's fixing bugs, suggesting new features, or improving documentation, feel free to submit pull requests or open issues.

How to Contribute

  1. Fork the repository.
  2. Create a new branch for your feature or fix.
  3. Implement your changes and add tests where needed.
  4. Submit a pull request.

Please follow the project's coding style and guidelines.


License

Phi φ is licensed under the MIT License. See the LICENSE.md file for more details.


Support

For any issues, questions, or feedback:

About

Phi φ is a modern superset of PHP that introduces strong typing, advanced OOP features, and a Blade-inspired templating system while maintaining full PHP compatibility.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages