Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasPilar committed Mar 5, 2019
0 parents commit 6c1b715
Show file tree
Hide file tree
Showing 60 changed files with 10,863 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true

[*.{php,php}]
indent_style = tab
indent_size = 4

[*.{yml,yaml}]
indent_style = space
indent_size = 4

[composer.json]
indent_style = tab
indent_size = 4
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vendor
!.gitignore
13 changes: 13 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run

tools:
external_code_coverage: true

checks:
php:
code_rating: true
50 changes: 50 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
language: php

matrix:
include:
- php: 7.2
env:
- PHPUNIT_FLAGS="--coverage-clover coverage.xml"
- COMPOSER_FLAGS=""
- php: 7.2
env:
- CODING_STANDARD=true
- COMPOSER_FLAGS=""
- php: 7.2
env:
- PHPSTAN=true
- COMPOSER_FLAGS=""
- php: 7.3
env:
- PHPUNIT_FLAGS="--coverage-clover coverage.xml"
- COMPOSER_FLAGS="--ignore-platform-reqs"
- php: 7.3
env:
- CODING_STANDARD=true
- COMPOSER_FLAGS="--ignore-platform-reqs"
- php: 7.3
env:
- PHPSTAN=true
- COMPOSER_FLAGS="--ignore-platform-reqs"

install:
- composer install $COMPOSER_FLAGS

script:
- vendor/bin/phpunit $PHPUNIT_FLAGS

# static analysis
- if [[ $CODING_STANDARD != "" ]]; then vendor/bin/ecs check src tests; fi
- if [[ $PHPSTAN != "" ]]; then vendor/bin/phpstan analyse src tests --level max --configuration phpstan.neon; fi

after_script:
# upload coverage.xml file to Scrutinizer to analyze it
- |
if [[ "$PHPUNIT_FLAGS" != "" ]]; then
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.xml
fi
# do not send success notifications, they have no value
notifications:
email: never
46 changes: 46 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017-2019 Tomáš Pilař

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Apicart/FQL (Filter Query Language)

[![Build Status](https://img.shields.io/travis/apicart/fql.svg?style=flat-square)](https://travis-ci.org/apicart/fql)
[![Quality Score](https://img.shields.io/scrutinizer/g/apicart/fql.svg?style=flat-square)](https://scrutinizer-ci.com/g/apicart/fql)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/apicart/fql.svg?style=flat-square)](https://scrutinizer-ci.com/g/apicart/fql)
[![Downloads](https://img.shields.io/packagist/dt/apicart/fql.svg?style=flat-square)](https://packagist.org/packages/apicart/fql)
[![Latest stable](https://img.shields.io/github/tag/apicart/fql.svg?style=flat-square)](https://packagist.org/packages/apicart/fql)

Write filter query as simple string via Filter Query Language (FQL) syntax. Filter query will be parsed into easy-to-use syntax tree.

**Simple FQL example:**

`q:"samsung" AND introducedAt:["2018-01-01 00:00:00" TO NOW] AND (type:tv OR type:mobile)`


## Installation

The simplest way to install Apicart/FQL is using [Composer](http://getcomposer.org/):

```sh
$ composer require apicart/fql
```


## Resources

* [Documentation](https://github.com/apicart/fql/blob/master/docs/en/index.md)
* [Contributing](https://github.com/apicart/fql/blob/master/CODE_OF_CONDUCT.md)
* [Report issues](https://github.com/apicart/fql/issues) and [send Pull Requests](https://github.com/apicart/fql/pulls).
35 changes: 35 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "apicart/fql",
"description": "Filter Query Language",
"keywords": ["apicart", "php", "search", "tokenizer", "query", "AST", "parser", "filters"],
"license": "MIT",
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^7.5",
"symplify/easy-coding-standard": "^5.4"
},
"autoload": {
"psr-4": {
"Apicart\\FQL\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Apicart\\FQL\\Tests\\": "tests"
}
},
"scripts": {
"complete-check": [
"phpunit",
"@check-cs",
"@phpstan"
],
"check-cs": "vendor/bin/ecs check src tests",
"fix-cs": "vendor/bin/ecs check src tests --fix",
"phpstan": "vendor/bin/phpstan analyse src tests --level max --configuration phpstan.neon"
}
}
Loading

0 comments on commit 6c1b715

Please sign in to comment.