Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekX committed Apr 25, 2019
0 parents commit b1723bf
Show file tree
Hide file tree
Showing 24 changed files with 2,572 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vendor
.idea
coverage
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "arekx/array-expression",
"description": "Array Expression Parser Interface",
"license": "Apache-2.0",
"authors": [
{
"name": "Aleksandar Panic",
"email": "arekusanda1@gmail.com"
}
],
"autoload": {
"psr-4": {
"ArekX\\ArrayExpression\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^6",
"phpunit/php-code-coverage": "^5"
},
"scripts": {
"test": "php vendor/bin/phpunit",
"coverage": "php vendor/bin/phpunit --coverage-html coverage --whitelist src"
}
}
Loading

0 comments on commit b1723bf

Please sign in to comment.