Popularity
4.3
Stable
Activity
0.0
Stable
405
18
27
Code Quality Rank:
L4
Programming language: PHP
License: MIT License
Tags:
Dependency Management
Melody alternatives and similar libraries
Based on the "Dependency Management" category.
Alternatively, view Melody alternatives based on common mentions on social networks and blogs.
-
Composer Installers
A Multi-Framework Composer Library Installer -
composer-unused
Show unused composer dependencies by scanning your code -
PHP Dependency analyzer
Library for check dependency between modules inside projects
Cloudways' Black Friday Offer - 1st Choice of Developers
Cloudways: Devs' 1st choice for managed hosting! Pick from top-tier Cloud providers like DigitalOcean, AWS, and GCE. Limited-time deal: 40% OFF for 4 Months + 40 Free Migrations.
Promo
cloudways.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Melody or a related project?
README
Melody - One-file composer scripts
Create a file named test.php
:
<?php
<<<CONFIG
packages:
- "symfony/finder: ~2.8"
CONFIG;
$finder = Symfony\Component\Finder\Finder::create()
->in(__DIR__)
->files()
->name('*.php')
;
foreach ($finder as $file) {
echo $file, "\n";
}
And simply run it:
$ melody run test.php
More Information
Read the documentation for more information.