From b84bde262eb60a99f8b50d2650bdf14bec487b19 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Thu, 24 Oct 2024 15:34:40 +1300 Subject: [PATCH] :arrow_up: chore: Change namespace --- .gitignore | 1 + composer.json | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d9610c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/vendor \ No newline at end of file diff --git a/composer.json b/composer.json index dcf5ac1..4d579bc 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name" : "dcarbone/ugly-queue", + "name" : "cybercinch/ugly-queue", "type" : "library", "description" : "A simple file-based queue system for PHP 5.3.3+", @@ -16,21 +16,25 @@ { "name" : "Daniel Carbone", "email" : "daniel.p.carbone@gmail.com" + }, + { + "name" : "Aaron Guise", + "email" : "aaron-composer@guise.net.nz" } ], "require" : { - "php" : ">=5.3.3", + "php" : ">=7.1", "dcarbone/helpers" : "~6.1" }, "require-dev" : { - "phpunit/phpunit": "~4.1" + "phpunit/phpunit": "~9.6.21" }, "autoload" : { "psr-4" : { - "DCarbone\\" : "src/" + "Cybercinch\\" : "src/" } } }