Skip to content

Commit 75c308b

Browse files
Merge pull request #27 from yabhq/feat/avatar-initials
Add HasAvatar attribute and Initial generation
2 parents 68d9d21 + 42a5eb7 commit 75c308b

File tree

9 files changed

+2431
-996
lines changed

9 files changed

+2431
-996
lines changed

.circleci/config.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ jobs:
77
build:
88
docker:
99
# Specify the version you desire here
10-
- image: circleci/php:7.3-cli
10+
- image: circleci/php:8.0-cli
1111

1212
steps:
1313
- checkout
1414

15-
- run: sudo apt update
15+
- run: sudo apt update
1616
- run: sudo docker-php-ext-install zip
1717

1818
# Download and cache dependencies
1919
- restore_cache:
2020
keys:
21-
- v1-dependencies-{{ checksum "composer.json" }}
22-
# fallback to using the latest cache if no exact match is found
23-
- v1-dependencies-
21+
- v1-dependencies-{{ checksum "composer.json" }}
22+
# fallback to using the latest cache if no exact match is found
23+
- v1-dependencies-
2424

2525
- run: composer install -n --prefer-dist
2626

2727
- save_cache:
2828
paths:
2929
- ./vendor
3030
key: v1-dependencies-{{ checksum "composer.json" }}
31-
31+
3232
# run tests!
33-
- run: vendor/bin/phpunit
33+
- run: vendor/bin/phpunit

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.3|^8.0",
20-
"illuminate/support": "^8.0",
19+
"php": "^7.4|^8.0",
20+
"illuminate/support": "^8|^9",
2121
"laravel/legacy-factories": "^1.0"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)