Mago (derived from Mago (Punic: ???, MGN), a renowned Carthaginian figure) is a toolchain for PHP that aims to provide a set of tools to help developers write better code. Mago draws inspiration from the Rust programming language and its ecosystem, striving to bring similar convenience, reliability, and a great developer experience to the PHP world.
Note: This project was previously named “Fennec” before being rebranded due to a naming conflict.
Warning
Mago is in an early stage of development. Many features are not yet implemented, and existing functionality may change, break, or stop working without notice. While we are not actively promoting or advertising the project, we are working in public to share our progress with the community.
To quickly install the latest release of Mago for macOS or Linux, use the following command:
curl:curl --proto '=https' --tlsv1.2 -sSf https://carthage.software/mago.sh | bashwget:wget -qO- https://carthage.software/mago.sh | bashTo specify a custom directory for the binary, use the --install-dir option:
curl --proto '=https' --tlsv1.2 -sSf https://carthage.software/mago.sh | bash -s -- --install-dir="/.bin"If the directory is not in your PATH, the script will provide instructions to add it.
sudoIf you need to install Mago system-wide, you can use sudo with the installation command:
curl --proto '=https' --tlsv1.2 -sSf https://carthage.software/mago.sh | sudo bashYou can find precompiled binaries for various platforms on our Releases page.
Simply download the archive for your platform, extract it, and place the mago binary somewhere in your PATH.
If you have Rust installed, you can install Mago using Cargo:
cargo install magoTo install Mago from source, you can clone the repository and build the project using Cargo:
git clone https://github.com/carthage-software/mago
cd mago
cargo install --path .Currently, Mago is built around PHP 8.3 and also supports PHP 8.4. While the linter and formatter may work with earlier versions of PHP, we cannot guarantee compatibility. They might suggest fixes or write code that is only compatible with PHP 8.3 and later.
At this stage, there is no option to select a PHP version target, which means Mago operates under the assumption of modern PHP versions. In the future, we plan to introduce support for selecting a PHP version target. Once implemented, this feature should enable better compatibility with earlier PHP versions, potentially down to PHP 8.0 or even earlier.
If you're working with PHP versions prior to 8.3, please proceed with caution and review suggested fixes or formatted code to ensure compatibility with your version.
For a quick start, you can refer to the example configuration files provided:
examples/mago.tomlexamples/mago-full.tomlYou can try Mago by navigating to the examples directory and running the linter on the sample PHP files:
cd examples
mago lint
mago fmtThis will analyze the PHP files located in the examples/src/ directory and display any linting errors.
Mago is a community-driven project, and we’d love for you to join us! Here are some ways you can contribute:
Got questions, feedback, or ideas? Join the Mago community on Discord to connect with other developers and stay up-to-date.
Join Here
Mago is inspired by several tools and projects that have significantly contributed to the development community:
These tools have inspired us and helped shape Mago's design and functionality.
We would like to acknowledge the following PHP tools that have greatly helped hundreds of thousands of PHP developers in their journey, ourselves included:
While Mago is intended to be a comprehensive toolchain that may eventually replace some of these tools, we deeply appreciate their contributions and the foundation they have built for the PHP community.
Mago is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Mago by you shall be dual licensed as above, without any additional terms or conditions.
Thank you for your interest in Mago. We look forward to sharing our progress and collaborating with the community as the project evolves.