diff options
author | Christophe Coevoet <stof@notk.org> | 2015-04-02 17:32:18 +0200 |
---|---|---|
committer | Christophe Coevoet <stof@notk.org> | 2015-04-02 17:32:18 +0200 |
commit | 3e73291370386071260d12bf942cb9d81a6c35f6 (patch) | |
tree | f685b40d053c2586d9cc81dec77690233246ddb6 | |
parent | 0cb1d5a8c4efd6576814247617fc8463042c6fc7 (diff) | |
download | php-jwt-3e73291370386071260d12bf942cb9d81a6c35f6.zip php-jwt-3e73291370386071260d12bf942cb9d81a6c35f6.tar.gz php-jwt-3e73291370386071260d12bf942cb9d81a6c35f6.tar.bz2 |
Remove the useless target-dir setting from the composer config
target-dir was meant to allow using the root of the package as a PSR-4 root and make composer prepend the target dir when installing to make it compatible with PSR-0, before PSR-4 was a reality.
This setting is deprecated in Composer in favor of using PSR-4, and it is not needed anyway when using the classmap autoloading.
-rw-r--r-- | composer.json | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 15b246c..95560af 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,5 @@ "autoload": { "classmap": ["Authentication/", "Exceptions/"] }, - "target-dir": "Firebase/PHP-JWT", "minimum-stability": "dev" } |