File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 22
22
"drupal/console" : " ^1.0.2" ,
23
23
"drupal/core" : " ~8.5.1" ,
24
24
"drush/drush" : " ^9.0.0" ,
25
- "vlucas/phpdotenv" : " ^2.4" ,
26
25
"webflo/drupal-finder" : " ^1.0.0" ,
27
26
"webmozart/path-util" : " ^2.3"
28
27
},
29
28
"require-dev" : {
30
- "webflo/drupal-core-require-dev" : " ~8.5.1"
29
+ "webflo/drupal-core-require-dev" : " ~8.5.1" ,
30
+ "vlucas/phpdotenv" : " ^2.4"
31
31
},
32
32
"conflict" : {
33
33
"drupal/drupal" : " *"
41
41
"classmap" : [
42
42
" scripts/composer/ScriptHandler.php"
43
43
],
44
+ },
45
+ "autoload-dev" : {
44
46
"files" : [" load.environment.php" ]
45
47
},
46
48
"scripts" : {
Original file line number Diff line number Diff line change 3
3
/**
4
4
* This file is included very early. See autoload.files in composer.json and
5
5
* https://getcomposer.org/doc/04-schema.md#files
6
+ *
7
+ * If you would like to remove phpdotenv from the project, run the following:
8
+ *
9
+ * 1. Run 'composer remove --dev vlucas/phpdotenv'
10
+ * 2. Remove this file and .env.example: 'rm load.environment.php .env.example'
11
+ * 3. Remove "files": ["load.environment.php"] from composer.json
12
+ * 4. Run 'composer dump-autoload' to regenerate the autoloader.
13
+ * 5. Run 'composer update --lock' to update the lock hash, since composer.json
14
+ * was manually edited.
6
15
*/
7
16
8
17
use Dotenv \Dotenv ;
You can’t perform that action at this time.
0 commit comments