Skip to content
  • This project
    • Loading...
  • Sign in

Commonwell / broker-site

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • broker-site
  • ..
  • di52
  • composer.json
  • Jeff Balicki's avatar
    learndash update · 7d85ec18 ...
    7d85ec18
    Signed-off-by: Jeff <jeff@gotenzing.com>
    Jeff Balicki committed 2023-06-07 13:04:51 -0400
composer.json 448 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
{
  "name": "lucatume/di52",
  "description": "A PHP 5.6 compatible dependency injection container.",
  "license": "GPL-3.0",
  "authors": [
    {
      "name": "Luca Tumedei",
      "email": "luca@theaveragedev.com"
    }
  ],
  "autoload": {
    "psr-4": {
      "lucatume\\DI52\\": "src/"
    }
  },
  "require": {
    "php": ">=5.6",
    "psr/container": "^1.0",
    "ext-json": "*"
  },
  "require-dev": {
    "phpunit/phpunit": "<10.0"
  }
}