Skip to content

Commit

Permalink
Updated composer path
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwizzdom committed Nov 9, 2021
1 parent 1ba7038 commit a610fb1
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 88 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
/app/error/
/app/lab/
/system/que/cache/
composer.lock
19 changes: 0 additions & 19 deletions app/composer.json

This file was deleted.

68 changes: 0 additions & 68 deletions app/composer.lock

This file was deleted.

2 changes: 1 addition & 1 deletion app/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
const AUTOLOAD_CACHE_PATH = (QUE_PATH . '/cache');

const AUTOLOAD_REQUIRE = [
APP_PATH . '/vendor/autoload.php',
APP_ROOT_PATH . '/vendor/autoload.php',
QUE_PATH . '/vendor/autoload.php',
QUE_PATH . '/constants.php',
QUE_PATH . '/functions.php',
Expand Down
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "iamwizzdom/que",
"type": "project",
"description": "The Que Framework.",
"keywords": ["que", "php", "framework"],
"license": "MIT",
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit a610fb1

Please sign in to comment.