Phi is a modern transpiler that enhances PHP with strong typing, object-oriented improvements, and an integrated Blade-inspired templating system.
Install Phi from Composer with:
composer global require phi-x/phi:dev-main
Create a hello.phi
file:
Hello, $name!
Run it with:
phi run hello --name=Phi
This displays: Hello, 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.
- 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.
- 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.
- PHP 8.4 or above (at least 8.4.3 recommended to avoid potential bugs)
- Composer
- Git
- Node with NPM (Optional)
composer global require phi-x/phi:dev-main
npm i -g @phi-x/phi@latest
Phi transpiles .phi
files into .php
, enabling strong typing and additional
features while maintaining PHP compatibility.
phi source.phi
This converts source.phi
into a PHP file, optimized for performance and execution.
<?php
// Strongly-typed function in Phi
function greet<T extends string>(T $name): T {
return "Hello, $name!";
}
echo greet("World");
<?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.
We welcome contributions! Whether it's fixing bugs, suggesting new features, or improving documentation, feel free to submit pull requests or open issues.
- Fork the repository.
- Create a new branch for your feature or fix.
- Implement your changes and add tests where needed.
- Submit a pull request.
Please follow the project's coding style and guidelines.
Phi φ is licensed under the MIT License. See the LICENSE.md file for more details.
For any issues, questions, or feedback: