Skip to content

Commit 91c52e9

Browse files
authored
Initial commit
0 parents  commit 91c52e9

File tree

106 files changed

+1947
-0
lines changed

Some content is hidden

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

106 files changed

+1947
-0
lines changed

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.feature]
13+
indent_size = 2
14+
15+
[*.md]
16+
trim_trailing_whitespace = false
17+
18+
[*.sh]
19+
indent_style = tab
20+
21+
[*.{yaml,yml}]
22+
trim_trailing_whitespace = false
23+
24+
[{webpack.config.js,.eslintrc.js}]
25+
indent_size = 2

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/.github export-ignore
2+
/etc export-ignore
3+
/docs export-ignore
4+
/.editorconfig export-ignore
5+
/.gitattributes export-ignore
6+
/.gitignore export-ignore
7+
/README.md export-ignore
8+
/behat.yml.dist export-ignore
9+
/docs export-ignore
10+
/ecs.php export-ignore
11+
/node_modules export-ignore
12+
/phpunit.xml.dist export-ignore
13+
/psalm-baseline.xml export-ignore
14+
/psalm.xml export-ignore
15+
/tests export-ignore
16+
/CHANGELOG.md export-ignore
17+
/UPGRADE.md export-ignore

.github/FUNDING.yml

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

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: [ "bug" ]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for taking the time to fill out this bug report!
9+
- type: input
10+
id: plugin-version
11+
attributes:
12+
label: Plugin version
13+
description: What version of the plugin are you using?
14+
validations:
15+
required: true
16+
- type: input
17+
id: sylius-version
18+
attributes:
19+
label: Sylius version
20+
description: What version of Sylius are you using?
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: what-happened
25+
attributes:
26+
label: What happened?
27+
description: Also tell us, what did you expect to happen?
28+
placeholder: Tell us what you see!
29+
validations:
30+
required: true
31+
- type: textarea
32+
id: logs
33+
attributes:
34+
label: Relevant log output
35+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
36+
render: shell

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Support question?
4+
url: https://sylius-devs.slack.com/archives/C3EGDG9LY
5+
about: Please ask questions on the Sylius support channel. It's okay to tag a developer, but please understand that we also have other obligations ;)
6+
- name: Security issue
7+
url: https://setono.com
8+
about: Please send security vulnerabilities directly to [email protected]

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Feature request
2+
description: Write a feature request
3+
title: "[Feature request]: "
4+
labels: [ "enhancement" ]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "We really value feature requests. Thank you :tada:"
9+
- type: textarea
10+
id: what-happened
11+
attributes:
12+
label: Describe the proposed solution
13+
description: A clear and concise description of what you want to happen
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: alternatives
18+
attributes:
19+
label: Describe alternatives you've considered
20+
description: A clear and concise description of any alternative solutions or features you've considered
21+
validations:
22+
required: false
23+
- type: textarea
24+
id: context
25+
attributes:
26+
label: Additional context
27+
description: Add any other context or screenshots about the feature request here
28+
validations:
29+
required: false
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# See https://github.com/Roave/BackwardCompatibilityCheck
2+
3+
name: "Backwards Compatibility Check"
4+
5+
on:
6+
pull_request: ~
7+
8+
jobs:
9+
backwards-compatibility-check:
10+
name: "Backwards Compatibility Check"
11+
12+
runs-on: "ubuntu-latest"
13+
14+
steps:
15+
- name: "Checkout"
16+
uses: "actions/checkout@v4"
17+
with:
18+
fetch-depth: 0
19+
20+
- name: "Setup PHP, with composer and extensions"
21+
uses: "shivammathur/setup-php@v2"
22+
with:
23+
php-version: "8.1"
24+
coverage: "none"
25+
26+
- name: "Install tool"
27+
run: "composer global require roave/backward-compatibility-check"
28+
29+
- name: "Check for BC breaks"
30+
run: "~/.composer/vendor/bin/roave-backward-compatibility-check --from=origin/${{ github.event.pull_request.base.ref }} --format=github-actions"

0 commit comments

Comments
 (0)