Skip to content

Commit c83ab43

Browse files
committed
Initial commit.
0 parents  commit c83ab43

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2696
-0
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
# PHP PSR-2 Coding Standards
5+
# http://www.php-fig.org/psr/psr-2/
6+
7+
root = true
8+
9+
[*.{php,inc,module}]
10+
charset = utf-8
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
indent_style = space
15+
indent_size = 4
16+
17+
[*.{json,json.dist,yml,yml.dist}]
18+
indent_size = 4

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/spec export-ignore
2+
.editorconfig export-ignore
3+
.gitattributes export-ignore
4+
.gitignore export-ignore
5+
.scrutinizer.yml export-ignore
6+
.travis.yml export-ignore
7+
phpunit.xml.dist export-ignore
8+
infection.json.dist export-ignore
9+
grumphp.yml.dist export-ignore
10+
phpspec.yml.dist export-ignore

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @loophp

.github/CODE_OF_CONDUCT.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
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.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
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.
28+
29+
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.
30+
31+
## Scope
32+
33+
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.
34+
35+
## Enforcement
36+
37+
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.
38+
39+
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.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44+
45+
[homepage]: http://contributor-covenant.org
46+
[version]: http://contributor-covenant.org/version/1/4/

.github/CONTRIBUTING.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# CONTRIBUTING
2+
3+
We're using [Travis CI](https://travis-ci.com) as a continuous integration system.
4+
5+
For details, see [`.travis.yml`](../.travis.yml).
6+
7+
## Tests
8+
9+
We're using [`grumphp/grumphp`](https://github.com/phpro/grumphp) to drive the development.
10+
11+
Run
12+
13+
```bash
14+
./vendor/bin/grumphp run
15+
```
16+
17+
to run all the tests.
18+
19+
## Coding Standards
20+
21+
We are using [`drupol/php-conventions`](https://github.com/drupol/php-conventions) to enforce coding standards.
22+
23+
Run
24+
25+
```bash
26+
./vendor/bin/grumphp run
27+
```
28+
29+
to automatically detect/fix coding standard violations.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: loophp

.github/ISSUE_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Steps required to reproduce the problem
2+
3+
1.
4+
2.
5+
3.
6+
7+
## Expected Result
8+
9+
*
10+
11+
## Actual Result
12+
13+
*

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
This PR
2+
3+
* [x]
4+
* [ ]
5+
* [ ]
6+
7+
Follows #.
8+
Related to #.
9+
Fixes #.

.github/settings.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# https://github.com/probot/settings
2+
3+
labels:
4+
- name: bug
5+
color: ee0701
6+
7+
- name: dependencies
8+
color: 0366d6
9+
10+
- name: enhancement
11+
color: 0e8a16
12+
13+
- name: question
14+
color: cc317c
15+
16+
- name: security
17+
color: ee0701
18+
19+
- name: stale
20+
color: eeeeee
21+
22+
repository:
23+
allow_merge_commit: true
24+
allow_rebase_merge: false
25+
allow_squash_merge: false
26+
default_branch: master
27+
description: "A curated list of combinators"
28+
topics: combinator,combinatory-logic,functional-programming
29+
has_downloads: true
30+
has_issues: true
31+
has_pages: false
32+
has_projects: false
33+
has_wiki: false
34+
name: combinator
35+
private: false

.github/stale.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
daysUntilStale: 60
2+
3+
daysUntilClose: 7
4+
5+
staleLabel: stale
6+
7+
markComment: >
8+
This issue has been automatically marked as stale because it has not had
9+
recent activity. It will be closed if no further activity occurs. Thank you
10+
for your contributions.

0 commit comments

Comments
 (0)