Skip to content

Commit 0ac7610

Browse files
committed
wided cached composer directories
include cache-repo-dir in cache so dependency resolution is faster when running `composer update` see: https://getcomposer.org/doc/06-config.md#cache-repo-dir
1 parent 17cfc4e commit 0ac7610

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ commands:
5959
- save_cache:
6060
name: Save Composer cache
6161
paths:
62-
- ~/.composer/cache/files
62+
- ~/.composer/cache
6363
key: composer-cache-{{ .Branch }}-{{ .BuildNum }}
6464
- save_cache:
6565
name: Save Composer cache
6666
paths:
67-
- ~/.composer/cache/files
67+
- ~/.composer/cache
6868
key: composer-cache-{{ .Revision }}-{{ .BuildNum }}
6969
save-php-cs-fixer-cache:
7070
steps:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66

77
cache:
88
directories:
9-
- $HOME/.composer/cache/files
9+
- $HOME/.composer/cache
1010
- $HOME/.npm
1111

1212
.steps:

0 commit comments

Comments
 (0)