Web_Project composer.json using the earlier version of MVC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "aura/web-project", | |
| "type": "project", | |
| "description": "A minimal web framework built from Aura v2 packages", | |
| "keywords": [ | |
| "web", | |
| "framework" | |
| ], | |
| "license": "BSD-2-Clause", | |
| "authors": [ | |
| { | |
| "name": "Aura.Web_Project Contributors", | |
| "homepage": "https://github.com/auraphp/Aura.Web_Project/contributors" | |
| } | |
| ], | |
| "minimum-stability": "dev", | |
| "require": { | |
| "aura/router": "dev-develop-2#62bdb766d4acdf2cf0947180da390c13f2da32fd as 2.*@dev", | |
| "aura/web-kernel": "dev-develop-2#980e67039a6252f797cb8542561a4c3192e2192b", | |
| "monolog/monolog": "1.*" | |
| }, | |
| "autoload": { | |
| "psr-0": { | |
| "": "src/" | |
| }, | |
| "psr-4": { | |
| "Aura\\Web_Project\\_Config\\": "config/" | |
| } | |
| }, | |
| "extra": { | |
| "aura": { | |
| "type": "project", | |
| "config": { | |
| "common": "Aura\\Web_Project\\_Config\\Common", | |
| "dev": "Aura\\Web_Project\\_Config\\Dev", | |
| "test": "Aura\\Web_Project\\_Config\\Test", | |
| "prod": "Aura\\Web_Project\\_Config\\Prod" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment