Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
QuintenJustus committed Feb 28, 2022
1 parent 0c85ea7 commit c40419f
Show file tree
Hide file tree
Showing 30 changed files with 63,303 additions and 9,630 deletions.
18 changes: 0 additions & 18 deletions .eslintrc.json

This file was deleted.

13 changes: 13 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,19 @@ That configuration file looks something like this.
'path' => 'prequel',


/*
|--------------------------------------------------------------------------
| Prequel base url
|--------------------------------------------------------------------------
|
| When present, this URL will be used instead of the default url.
| This should be a complete url excluding tailing slash.
| Example: 'https://protoqol.nl'
|
*/
'baseUrl' => null,


/*
|--------------------------------------------------------------------------
| Laravel asset generation suffix and namespace definition
Expand Down
14 changes: 0 additions & 14 deletions .styleci.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

103 changes: 53 additions & 50 deletions composer.json
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"
}
}
Loading

0 comments on commit c40419f

Please sign in to comment.