Skip to content
This repository has been archived by the owner on Oct 8, 2023. It is now read-only.

Commit

Permalink
Project structure changed
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrogehlen committed May 25, 2021
1 parent f50ab91 commit 717a1bc
Show file tree
Hide file tree
Showing 14 changed files with 1,936 additions and 55 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Thumbs.db

# composer vendor dir
/vendor
composer.lock

# composer itself is not needed
composer.phar
Expand Down
26 changes: 13 additions & 13 deletions .scrutinizer.yml
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/*
83 changes: 46 additions & 37 deletions composer.json
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"
}
}
}
Loading

0 comments on commit 717a1bc

Please sign in to comment.