-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/bluzphp/module-phones int…
…o develop � Conflicts: � .scrutinizer.yml � .travis.yml � LICENSE.md � README.md � application/modules/phones/views/grid.phtml � composer.json
- Loading branch information
Showing
18 changed files
with
72 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.DS_Store | ||
.idea | ||
vendor | ||
composer.lock | ||
composer.phar |
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,29 +1,44 @@ | ||
checks: | ||
php: | ||
code_rating: true | ||
deprecated_code_usage: true | ||
duplication: true | ||
no_short_open_tag: true | ||
build: | ||
cache: | ||
directories: | ||
- "vendor" | ||
- "~/.composer" | ||
nodes: | ||
analysis: | ||
tests: | ||
override: | ||
- php-scrutinizer-run | ||
checks: | ||
php: | ||
psr2_switch_declaration: true | ||
psr2_class_declaration: true | ||
no_short_open_tag: true | ||
deprecated_code_usage: true | ||
code_rating: true | ||
dependencies: | ||
override: | ||
- COMPOSER_ROOT_VERSION=dev-master | ||
filter: | ||
excluded_paths: [bin, docs, docker, data, tests, vendor] | ||
excluded_paths: | ||
- "bin/" | ||
- "data/" | ||
- "docs/" | ||
- "docker/" | ||
- "public/" | ||
- "tests/" | ||
dependency_paths: | ||
- "vendor/" | ||
tools: | ||
external_code_coverage: false | ||
php_analyzer: true | ||
php_code_sniffer: | ||
config: | ||
standard: PSR2 | ||
standard: PSR12 | ||
php_cpd: | ||
enabled: true | ||
excluded_dirs: [bin, docs, docker, data, tests, vendor] | ||
excluded_dirs: [bin, data, docs, docker, public, tests, vendor] | ||
php_loc: | ||
enabled: true | ||
excluded_dirs: [bin, docs, docker, data, tests, vendor] | ||
excluded_dirs: [bin, data, docs, docker, public, tests, vendor] | ||
php_mess_detector: true | ||
php_pdepend: true | ||
sensiolabs_security_checker: true |
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
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,7 +1,9 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
|
||
namespace Application\UsersPhones; | ||
|
||
/** | ||
|
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
Empty file.
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,4 +1,5 @@ | ||
<?php | ||
|
||
/** | ||
* CRUD controller for UsersPhones model | ||
* | ||
|
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,4 +1,5 @@ | ||
<?php | ||
|
||
/** | ||
* CRUD controller for POST method | ||
* | ||
|
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{ | ||
"name": "bluzphp/module-phones", | ||
"name": "bluzphp/module-profile", | ||
"type": "bluz-module", | ||
"license": "MIT", | ||
"description": "bluz phones module", | ||
"description": "bluz profile module", | ||
"require": { | ||
"bluzphp/framework": "~7.11", | ||
"bluzphp/composer-plugin": "~2.1" | ||
"bluzphp/composer-plugin": "~2.4" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -41,6 +41,5 @@ public function change() | |
'update' => 'CASCADE' | ||
]) | ||
->create(); | ||
|
||
} | ||
} |