Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-esteban-pcc committed Jul 24, 2020
0 parents commit 8a75cae
Show file tree
Hide file tree
Showing 9 changed files with 2,628 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/vendor/
/.idea/
/vendor/
.phpunit.result.cache
24 changes: 24 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "pccomponentes/criteria-array-adapter",
"description": "Adapter for array for implement filter/criteria pattern",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4",
"pccomponentes/criteria": "^0.1.1"
},
"autoload": {
"psr-4": {
"PcComponentes\\CriteriaArrayAdapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PcComponentes\\CriteriaDBALAdapter\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"fzaninotto/faker": "^1.9"
}
}
Loading

0 comments on commit 8a75cae

Please sign in to comment.