This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
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
f50ab91
commit 717a1bc
Showing
14 changed files
with
1,936 additions
and
55 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 |
---|---|---|
|
@@ -14,7 +14,6 @@ Thumbs.db | |
|
||
# composer vendor dir | ||
/vendor | ||
composer.lock | ||
|
||
# composer itself is not needed | ||
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,17 +1,17 @@ | ||
imports: | ||
- php | ||
- php | ||
checks: | ||
php: | ||
code_rating: true | ||
duplication: true | ||
php: | ||
code_rating: true | ||
duplication: true | ||
tools: | ||
external_code_coverage: | ||
timeout: 600 # Timeout in seconds. | ||
php_sim: false | ||
php_cpd: false | ||
php_pdepend: true | ||
php_analyzer: true | ||
php_changetracking: true | ||
external_code_coverage: | ||
timeout: 600 # Timeout in seconds. | ||
php_sim: false | ||
php_cpd: false | ||
php_pdepend: true | ||
php_analyzer: true | ||
php_changetracking: true | ||
filter: | ||
excluded_paths: | ||
- vendor/* | ||
excluded_paths: | ||
- vendor/* |
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,40 +1,49 @@ | ||
{ | ||
"name": "leandrogehlen/yii2-querybuilder", | ||
"description": "Extension for Yii2 Framework to work with jQuery QueryBuilder", | ||
"keywords": ["yii2", "dynamic", "query", "builder", "querybuilder", "interface"], | ||
"type": "yii2-extension", | ||
"license": "BSD-3-Clause", | ||
"prefer-stable": true, | ||
"support": { | ||
"issues": "https://github.com/leandrogehlen/yii2-querybuilder/issues", | ||
"source": "https://github.com/leandrogehlen/yii2-querybuilder" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Leandro Guindani Gehlen", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"require": { | ||
"yiisoft/yii2": "~2.0.0", | ||
"solutosoft/yii2-plugin": "~1.0.0", | ||
"bower-asset/jquery-querybuilder": "~2.4.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.4" | ||
}, | ||
"autoload": { | ||
"psr-4": { "leandrogehlen\\querybuilder\\": "" } | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0.x-dev" | ||
} | ||
"name": "leandrogehlen/yii2-querybuilder", | ||
"description": "Extension for Yii2 Framework to work with jQuery QueryBuilder", | ||
"keywords": [ | ||
"yii2", | ||
"dynamic", | ||
"query", | ||
"builder", | ||
"querybuilder", | ||
"interface" | ||
], | ||
"type": "yii2-extension", | ||
"license": "BSD-3-Clause", | ||
"prefer-stable": true, | ||
"support": { | ||
"issues": "https://github.com/leandrogehlen/yii2-querybuilder/issues", | ||
"source": "https://github.com/leandrogehlen/yii2-querybuilder" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Leandro Guindani Gehlen", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://asset-packagist.org" | ||
} | ||
], | ||
"require": { | ||
"yiisoft/yii2": "~2.0.0", | ||
"solutosoft/yii2-plugin": "~1.0.0", | ||
"bower-asset/jquery-querybuilder": "~2.4.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.8.34" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"leandrogehlen\\querybuilder\\": "src" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0.x-dev" | ||
} | ||
} | ||
} |
Oops, something went wrong.