This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Formatting & code clean up - Merge branch 'master' of github.com:Protoqol/Prequel
- Loading branch information
Showing
34 changed files
with
653 additions
and
700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
{ | ||
"name": "protoqol/prequel", | ||
"description": "Clear and concise database management.", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
"name" : "protoqol/prequel", | ||
"description" : "Clear and concise database management.", | ||
"type" : "library", | ||
"license" : "MIT", | ||
"authors" : [ | ||
{ | ||
"name": "Quinten Schorsij", | ||
"name" : "Quinten Schorsij", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": "^7.1", | ||
"minimum-stability" : "stable", | ||
"require" : { | ||
"php" : "^7.1", | ||
"laravel/framework": ">=5.6" | ||
}, | ||
"extra": { | ||
"extra" : { | ||
"laravel": { | ||
"providers": [ | ||
"Protoqol\\Prequel\\PrequelServiceProvider" | ||
] | ||
} | ||
}, | ||
"require-dev": { | ||
"require-dev" : { | ||
"orchestra/testbench": "^3.7", | ||
"phpmd/phpmd": "^2.6" | ||
"phpmd/phpmd" : "^2.6" | ||
}, | ||
"autoload": { | ||
"autoload" : { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"autoload-dev" : { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"scripts" : { | ||
"phpins": [ | ||
"./vendor/bin/phpinsights" | ||
], | ||
"phpmd": [ | ||
"phpmd" : [ | ||
"phpmd src html cleancode,codesize,controversial,design,naming,unusedcode > public/phpmd.html" | ||
], | ||
"test": [ | ||
"test" : [ | ||
"phpunit" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"phpins": "Runs nunomaduro's PHPInsights. This gives you a report about the current code quality.", | ||
"phpmd": "Runs PHPMD based on original configuration. You can find the new mess detector report at http://localhost/vendor/prequel/phpmd.html Note that 'Avoid using static access to class' errors should be ignored.", | ||
"test": "Runs the default PHPUnit test suite configured in phpunit.xml" | ||
"phpmd" : "Runs PHPMD based on original configuration. You can find the new mess detector report at http://localhost/vendor/prequel/phpmd.html Note that 'Avoid using static access to class' errors should be ignored.", | ||
"test" : "Runs the default PHPUnit test suite configured in phpunit.xml" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
return { | ||
migrations: { | ||
pending: 0, | ||
total : 0, | ||
total: 0, | ||
}, | ||
}; | ||
}, | ||
|
2 changes: 1 addition & 1 deletion
2
resources/assets/js/components/Dashboard/DashboardElements/Settings.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<template> | ||
<!-- @TODO edit config --> | ||
<!-- @TODO edit config --> | ||
</template> | ||
|
||
<script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.