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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* 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.