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.
- Loading branch information
1 parent
0c85ea7
commit c40419f
Showing
30 changed files
with
63,303 additions
and
9,630 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,53 +1,56 @@ | ||
{ | ||
"name": "protoqol/prequel", | ||
"description": "Clear and concise database management.", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Quinten Schorsij", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": "^7.1|^8.0", | ||
"laravel/framework": ">=5.6" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Protoqol\\Prequel\\PrequelServiceProvider" | ||
] | ||
} | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^3.7", | ||
"phpmd/phpmd": "^2.6" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"phpins": [ | ||
"./vendor/bin/phpinsights" | ||
], | ||
"phpmd": [ | ||
"phpmd src html cleancode,codesize,controversial,design,naming,unusedcode > public/phpmd.html" | ||
"name": "protoqol/prequel", | ||
"description": "Clear and concise database management.", | ||
"version": "1.23.0", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Quinten Schorsij", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"test": [ | ||
"phpunit" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"phpins": "Runs nunomaduro's PHPInsights. This gives you a report about the current code quality.", | ||
"test": "Runs the default PHPUnit test suite configured in phpunit.xml" | ||
} | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": "^7.2.5|^8.0", | ||
"laravel/framework": "^6.0|^7.0|^8.0|^9.0", | ||
"ext-pdo": "*", | ||
"ext-json": "*" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Protoqol\\Prequel\\PrequelServiceProvider" | ||
] | ||
} | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^3.7", | ||
"phpmd/phpmd": "^2.6" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Protoqol\\Prequel\\Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"phpins": [ | ||
"./vendor/bin/phpinsights" | ||
], | ||
"phpmd": [ | ||
"phpmd src html cleancode,codesize,controversial,design,naming,unusedcode > public/phpmd.html" | ||
], | ||
"test": [ | ||
"phpunit" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"phpins": "Runs nunomaduro's PHPInsights. This gives you a report about the current code quality.", | ||
"test": "Runs the default PHPUnit test suite configured in phpunit.xml" | ||
} | ||
} |
Oops, something went wrong.