-
-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,38 @@ | ||
{ | ||
"name": "drupal/console", | ||
"description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.", | ||
"keywords": ["Drupal", "Console", "Development", "Symfony"], | ||
"keywords": [ | ||
"Drupal", | ||
"Console", | ||
"Development", | ||
"Symfony" | ||
], | ||
"homepage": "http://drupalconsole.com/", | ||
"type": "library", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "David Flores", | ||
"email": "[email protected]", | ||
"homepage": "http://dmouse.net" | ||
"name": "David Flores", | ||
"email": "[email protected]", | ||
"homepage": "http://dmouse.net" | ||
}, | ||
{ | ||
"name": "Jesus Manuel Olivas", | ||
"email": "[email protected]", | ||
"homepage": "http://jmolivas.com" | ||
"name": "Jesus Manuel Olivas", | ||
"email": "[email protected]", | ||
"homepage": "http://jmolivas.com" | ||
}, | ||
{ | ||
"name": "Eduardo Garcia", | ||
"email": "[email protected]", | ||
"homepage": "http://enzolutions.com/" | ||
"name": "Eduardo Garcia", | ||
"email": "[email protected]", | ||
"homepage": "http://enzolutions.com/" | ||
}, | ||
{ | ||
"name": "Omar Aguirre", | ||
"email": "[email protected]" | ||
"name": "Omar Aguirre", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Drupal Console Contributors", | ||
"homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors" | ||
"name": "Drupal Console Contributors", | ||
"homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors" | ||
} | ||
], | ||
"support": { | ||
|
@@ -41,8 +46,8 @@ | |
"composer/installers": "~1.0", | ||
"doctrine/annotations": "^1.2", | ||
"doctrine/collections": "^1.3", | ||
"drupal/console-core": "1.9.6", | ||
"drupal/console-extend-plugin": "~0", | ||
"drupal/console-core": "1.9.7", | ||
"drupal/console-extend-plugin": "~0.9.5", | ||
"psy/psysh": "0.6.* || ~0.8", | ||
"symfony/css-selector": "~3.0|~4.0", | ||
"symfony/dom-crawler": "~3.0|~4.0", | ||
|
@@ -52,14 +57,18 @@ | |
"symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI", | ||
"vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically" | ||
}, | ||
"bin": ["bin/drupal"], | ||
"bin": [ | ||
"bin/drupal" | ||
], | ||
"config": { | ||
"bin-dir": "bin/", | ||
"sort-packages": true | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": {"Drupal\\Console\\": "src"} | ||
"psr-4": { | ||
"Drupal\\Console\\": "src" | ||
} | ||
} | ||
} | ||
} |