From 7189b2e3fb69dc42b615975bb9a99b2e10c4648c Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Fri, 8 Sep 2023 09:51:58 -0700 Subject: [PATCH] Update version references Using asterisks is easier to understand thant remembering what ^ and ~ mean. --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 2da468d..03f09a9 100644 --- a/composer.json +++ b/composer.json @@ -27,13 +27,13 @@ "format": "./vendor/bin/pint" }, "require": { - "php": ">=8.0", - "utopia-php/cli": "^0.15.0", - "appwrite/appwrite": "^10.0.0" + "php": "8.0.*", + "utopia-php/cli": "0.*", + "appwrite/appwrite": "10.0.*" }, "require-dev": { - "phpunit/phpunit": "^9.3", - "vlucas/phpdotenv": "^5.5", - "laravel/pint": "^1.10" + "phpunit/phpunit": "9.*", + "vlucas/phpdotenv": "5.*", + "laravel/pint": "1.*" } }