mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
Merge branch 'master' into production
This commit is contained in:
commit
54a44946cd
7
.gitignore
vendored
7
.gitignore
vendored
@ -5,14 +5,7 @@
|
|||||||
/vendor
|
/vendor
|
||||||
/.idea
|
/.idea
|
||||||
/.vscode
|
/.vscode
|
||||||
/.vagrant
|
|
||||||
Homestead.json
|
|
||||||
Homestead.yaml
|
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
.env
|
.env
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
mergeAndDeploy.sh
|
|
||||||
start_vagrant.sh
|
|
||||||
stop_vagrant.sh
|
|
||||||
ssh_homestead.sh
|
|
2
check.sh
Normal file
2
check.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
./vendor/bin/phpstan analyse --memory-limit=2G
|
||||||
|
php artisan insights
|
@ -18,6 +18,9 @@
|
|||||||
"fzaninotto/faker": "^1.4",
|
"fzaninotto/faker": "^1.4",
|
||||||
"mockery/mockery": "^1.0",
|
"mockery/mockery": "^1.0",
|
||||||
"nunomaduro/collision": "^5.0",
|
"nunomaduro/collision": "^5.0",
|
||||||
|
"nunomaduro/larastan": "^0.7.4",
|
||||||
|
"nunomaduro/phpinsights": "^1.14",
|
||||||
|
"phpstan/phpstan": "^0.12.85",
|
||||||
"phpunit/phpunit": "^9.0"
|
"phpunit/phpunit": "^9.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
2190
composer.lock
generated
2190
composer.lock
generated
File diff suppressed because it is too large
Load Diff
113
config/insights.php
Normal file
113
config/insights.php
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Insights\ForbiddenDefineFunctions;
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Insights\ForbiddenFinalClasses;
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Insights\ForbiddenNormalClasses;
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Insights\ForbiddenPrivateMethods;
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Insights\ForbiddenTraits;
|
||||||
|
use NunoMaduro\PhpInsights\Domain\Metrics\Architecture\Classes;
|
||||||
|
use SlevomatCodingStandard\Sniffs\Commenting\UselessFunctionDocCommentSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\Namespaces\AlphabeticallySortedUsesSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\TypeHints\DeclareStrictTypesSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\TypeHints\DisallowMixedTypeHintSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\TypeHints\ParameterTypeHintSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\TypeHints\PropertyTypeHintSniff;
|
||||||
|
use SlevomatCodingStandard\Sniffs\TypeHints\ReturnTypeHintSniff;
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Default Preset
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This option controls the default preset that will be used by PHP Insights
|
||||||
|
| to make your code reliable, simple, and clean. However, you can always
|
||||||
|
| adjust the `Metrics` and `Insights` below in this configuration file.
|
||||||
|
|
|
||||||
|
| Supported: "default", "laravel", "symfony", "magento2", "drupal"
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'preset' => 'laravel',
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| IDE
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| This options allow to add hyperlinks in your terminal to quickly open
|
||||||
|
| files in your favorite IDE while browsing your PhpInsights report.
|
||||||
|
|
|
||||||
|
| Supported: "textmate", "macvim", "emacs", "sublime", "phpstorm",
|
||||||
|
| "atom", "vscode".
|
||||||
|
|
|
||||||
|
| If you have another IDE that is not in this list but which provide an
|
||||||
|
| url-handler, you could fill this config with a pattern like this:
|
||||||
|
|
|
||||||
|
| myide://open?url=file://%f&line=%l
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'ide' => null,
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Configuration
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may adjust all the various `Insights` that will be used by PHP
|
||||||
|
| Insights. You can either add, remove or configure `Insights`. Keep in
|
||||||
|
| mind that all added `Insights` must belong to a specific `Metric`.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'exclude' => [
|
||||||
|
// 'path/to/directory-or-file'
|
||||||
|
],
|
||||||
|
|
||||||
|
'add' => [
|
||||||
|
Classes::class => [
|
||||||
|
ForbiddenFinalClasses::class,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'remove' => [
|
||||||
|
AlphabeticallySortedUsesSniff::class,
|
||||||
|
DeclareStrictTypesSniff::class,
|
||||||
|
DisallowMixedTypeHintSniff::class,
|
||||||
|
ForbiddenDefineFunctions::class,
|
||||||
|
ForbiddenNormalClasses::class,
|
||||||
|
ForbiddenTraits::class,
|
||||||
|
ParameterTypeHintSniff::class,
|
||||||
|
PropertyTypeHintSniff::class,
|
||||||
|
ReturnTypeHintSniff::class,
|
||||||
|
UselessFunctionDocCommentSniff::class,
|
||||||
|
],
|
||||||
|
|
||||||
|
'config' => [
|
||||||
|
ForbiddenPrivateMethods::class => [
|
||||||
|
'title' => 'The usage of private methods is not idiomatic in Laravel.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Requirements
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may define a level you want to reach per `Insights` category.
|
||||||
|
| When a score is lower than the minimum level defined, then an error
|
||||||
|
| code will be returned. This is optional and individually defined.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'requirements' => [
|
||||||
|
// 'min-quality' => 0,
|
||||||
|
// 'min-complexity' => 0,
|
||||||
|
// 'min-architecture' => 0,
|
||||||
|
// 'min-style' => 0,
|
||||||
|
// 'disable-security-check' => false,
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
2
deploy.sh
Normal file
2
deploy.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
git checkout production && git merge master && git checkout - && git push origin production && ssh -A contabo -t "cd /var/www/shareit.brunofontes.net; git fetch --all; git checkout --force production; git pull origin production --force; ~/composer.phar install -n --optimize-autoloader --no-dev; npm install"
|
663
package-lock.json
generated
663
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -14,11 +14,11 @@
|
|||||||
"bootstrap": "^4.6.0",
|
"bootstrap": "^4.6.0",
|
||||||
"cross-env": "^5.2.1",
|
"cross-env": "^5.2.1",
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.5.1",
|
||||||
"laravel-mix": "^6.0.17",
|
"laravel-mix": "^6.0.18",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"resolve-url-loader": "^3.1.2",
|
"resolve-url-loader": "^3.1.3",
|
||||||
"sass": "^1.32.8",
|
"sass": "^1.32.12",
|
||||||
"sass-loader": "^8.0.2",
|
"sass-loader": "^8.0.2",
|
||||||
"vue": "^2.6.12",
|
"vue": "^2.6.12",
|
||||||
"vue-template-compiler": "^2.6.12"
|
"vue-template-compiler": "^2.6.12"
|
||||||
|
17
phpstan.neon
Normal file
17
phpstan.neon
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
includes:
|
||||||
|
- ./vendor/nunomaduro/larastan/extension.neon
|
||||||
|
|
||||||
|
parameters:
|
||||||
|
paths:
|
||||||
|
- app
|
||||||
|
|
||||||
|
# The level 8 is the highest level
|
||||||
|
level: 5
|
||||||
|
|
||||||
|
ignoreErrors:
|
||||||
|
- '#Unsafe usage of new static#'
|
||||||
|
|
||||||
|
excludePaths:
|
||||||
|
- ./*/*/FileToBeExcluded.php
|
||||||
|
|
||||||
|
checkMissingIterableValueType: false
|
1
ssh_homestead.sh
Normal file
1
ssh_homestead.sh
Normal file
@ -0,0 +1 @@
|
|||||||
|
ssh homestead -t "cd code/Bruno\ Fontes/shareit; bash --login"
|
4
start_vagrant.sh
Normal file
4
start_vagrant.sh
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/zsh
|
||||||
|
builtin cd ~/development/laravelHomestead && /usr/bin/vagrant up && builtin cd -
|
||||||
|
~/Apps/firefox/firefox-bin http://shareit.test
|
||||||
|
~/Apps/firefox/firefox-bin https://mailtrap.io/inboxes/455614/messages
|
Loading…
Reference in New Issue
Block a user