Packagist VS Deptrac

Compare Packagist vs Deptrac and see what are their differences.

Packagist

Package Repository Website - try https://packagist.com if you need your own - (by composer)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Packagist Deptrac
61 16
1,708 2,521
0.6% 2.1%
8.7 6.8
1 day ago 7 days ago
PHP PHP
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Packagist

Posts with mentions or reviews of Packagist. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-27.
  • Get YouTube Channel Details API: Testing Connection
    2 projects | dev.to | 27 Dec 2023
    What will we do next time? Actually, the whole package is ready, and all that's left is to publish it on Packagist.
  • Shopware Changes since the 6.0 Dev Training Videos
    5 projects | dev.to | 12 Dec 2023
    The latter one is based on nix OS using Symfony flex recipes and PHP packagist composer. The flex devenv should work cross-platform on Linux, Windows, and Mac. "The main difference to other tools like Docker or a VM is that it neither uses containerization nor virtualization techniques. Instead, the services run natively on your machine."
  • Was Rust Worth It?
    18 projects | news.ycombinator.com | 25 Oct 2023
    Sorta—it looks like they were most enforced by convention until May 2015, when they finally become enforced [0]. Still, that's a good one that I hadn't thought of, and they at least had the convention in place.

    [0] https://github.com/composer/packagist/issues/163#issuecommen...

  • Best practices for building a production-ready Dockerfile for PHP applications
    5 projects | dev.to | 23 Aug 2023
    Scanning your image for vulnerabilities is a critical step before you deploy it to production. You can use Snyk to scan your PHP Docker image and identify and resolve vulnerabilities. The Snyk Vulnerability Database includes records for all popular operating systems and dependencies, including PHP packages published to Packagist.
  • laravel is apple and symfony is android, your own framework is linux distro buit by you
    2 projects | /r/PHP | 7 Jun 2023
    No. The only linked commercial thing I know - is Nova admin panel interface lib. But you don't have to use it. (Filament or Encore are free and suitable). Modules are free ( packagist.org and gthub.com ) and you should handle them with standard composer package tool. But you need to code. It is not WordPress like CMS
  • New to PHP - I'm actually impressed
    5 projects | /r/PHP | 31 May 2023
    For strings I use Stringy (https://github.com/danielstjules/Stringy) for arrays I built my own Collection library, but pretty sure there are plenty in packagist (https://packagist.org/)
  • Google Drive API, PHP discontinued.
    2 projects | /r/PHPhelp | 31 May 2023
    I guess I tried downloading a old version. and have to download a newer version of apiclient I found on https://packagist.org/packages/google/apiclient with monolog/monolog: ^2.9||^3.0. I'll try that in a second, I am away from computer now.
  • Is there any laravel package to modify existing excel files
    2 projects | /r/laravel | 25 May 2023
    packagist.org , look for the most downloaded and go from there
  • Why can't I just download Laravel?
    3 projects | /r/PHPhelp | 8 May 2023
    Because it's much easier. A dependency is a third party library your project needs to function. People develop their libraries and publish them in packagist.org and then give you a package name you can use to include that library. Composer downloads the version you ask for and also checks the dependencies on that library. Sometimes 2 or more libraries depend on a single library so Composer checks what's the latest version that is compatible with both and downloads it. Also checks wether that library is compatible with your PHP version, also checks for your PHP extensions. Imagine doing all that with zips. Instead of that, you run a command and it checks everything for you.
    3 projects | /r/PHPhelp | 8 May 2023
    Combined with the Packagist repository, it makes finding, installing and updating libraries and frameworks a much easier task than the old days of having to manually update each library, track supported dependencies and resolve conflicts between libraries.

Deptrac

Posts with mentions or reviews of Deptrac. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-09.
  • Microservices aren't the problem. Incompetent people are
    4 projects | news.ycombinator.com | 9 Nov 2023
  • Enforce architecture rules with Deptrac
    4 projects | dev.to | 31 Oct 2023
    Deptrac
  • PHP libraries and tools
    47 projects | dev.to | 18 Oct 2023
    Deptrac: Keep your architecture clean.
  • Enforcing module boundaries in a large php app
    2 projects | /r/PHP | 17 Jan 2023
    So far I've found some tools which I could piece together to accomplish enforcing module boundaries, probably run as part of an automated github action. - https://github.com/qossmic/deptrac Uses YAML to define any boundary, you can also use @internal to hide implementation classes. Seems like a good way to achieve what I want.
  • Deptrac - architectural code analysis
    5 projects | /r/PHP | 26 Nov 2022
  • Best way to check custom coding conventions
    5 projects | /r/PHP | 5 Sep 2022
    How about https://qossmic.github.io/deptrac/ ?
  • The use of `class` for things that should be simple free functions (2020)
    3 projects | news.ycombinator.com | 29 May 2022
    >I wonder: Is automatic DI even helpful? You save some lines of boilerplate but sacrifice control over the initialization-order and get a flat, messy, implicit dependency graph

    Initialization order doesn't matter if your services are stateless. At least in our codebase, all of them are stateless, as it greatly simplifies reasoning about concurrent code (both in-process and between servers). Yes, it's easy to end up with a very a convoluted dependency graph under the hood, but I don't think it's a problem you really should care about. I mean, your code most likely already compiles to a very convoluted mess of machine code under the hood (with all the optimizations, ABI quirks etc.) and I doubt it matters to you much, as long as it does its job well and doesn't hinder your productivity.

    If you are talking about messy dependency graphs from the architectural standpoint (someone can easily add a dependency in the constructor without thinking about the consequences), we use deptrac for our PHP monolith which can validate your architecture is clean at build time [0]

    However, for our microservices written in Go, we decided to use manual DI to stimulate developers to prefer simpler design, otherwise our microservices could quickly turn to monoliths again.

    [0] https://github.com/qossmic/deptrac

  • The 4 basic libraries every Symfony Project needs to improve code quality
    3 projects | dev.to | 21 May 2022
    Deptrac is a static code analysis tool for PHP that helps you communicate, visualize and enforce architectural decisions in your projects.
  • Weekly "ask anything" thread
    3 projects | /r/PHP | 9 Feb 2022
    Just now watching the Laracon on youtube, and they mentioned https://github.com/qossmic/deptrac in the "Modularising the Monolith" presentation, which helps setting boundaries / specific dependency usage within your codebase.
  • Write application = write architecture test
    3 projects | /r/PHP | 5 Nov 2021

What are some alternatives?

When comparing Packagist and Deptrac you can also consider the following projects:

PHP Architecture Tester - PHP Architecture Tester - Easy to use architectural testing tool for PHP :heavy_check_mark:

modular-laravel - Modular Laravel - Boilerplate project starter

Laravel-Zero - A PHP framework for console artisans

WordPress Packagist - WordPress Packagist — manage your plugins with Composer

Laravel 6 - Powerful REPL for the Laravel framework.

Bingo Functional - A simple functional programming library for PHP

Symfony Panther - A browser testing and web crawling library for PHP and Symfony

phpstan-rules - 👓 Provides a composer package with rules for phpstan/phpstan.

LaravelS - LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole.

Firegento - Extends the customer functionality of Magento.

phpstan-magento - Magento specific extension for PHPStan

phparch