Skip to content

Commit 5ac5e9e

Browse files
authored
Merge pull request #58 from Setono/upgrade
Upgrade test application and meta files
2 parents 64a597c + 3518a3e commit 5ac5e9e

Some content is hidden

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

49 files changed

+497
-317
lines changed

.editorconfig

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,22 @@
1-
# EditorConfig helps developers define and maintain consistent
2-
# coding styles between different editors and IDEs
3-
# editorconfig.org
4-
51
root = true
62

73
[*]
8-
# Change these settings to your own preference
94
indent_style = space
105
indent_size = 4
116

12-
# We recommend you to keep these unchanged
137
end_of_line = lf
148
charset = utf-8
159
trim_trailing_whitespace = true
1610
insert_final_newline = true
1711

1812
[*.feature]
19-
indent_style = space
20-
indent_size = 2
21-
22-
[*.js]
23-
indent_style = space
24-
indent_size = 2
25-
26-
[*.json]
27-
indent_style = space
2813
indent_size = 2
2914

3015
[*.md]
31-
indent_style = space
32-
indent_size = 4
3316
trim_trailing_whitespace = false
3417

35-
[*.neon]
36-
indent_style = tab
37-
indent_size = 4
38-
39-
[*.php]
40-
indent_style = space
41-
indent_size = 4
42-
4318
[*.sh]
4419
indent_style = tab
45-
indent_size = 4
4620

4721
[*.{yaml,yml}]
48-
indent_style = space
49-
indent_size = 4
5022
trim_trailing_whitespace = false
51-
52-
[.babelrc]
53-
indent_style = space
54-
indent_size = 2
55-
56-
[.gitmodules]
57-
indent_style = tab
58-
indent_size = 4
59-
60-
[.php_cs{,.dist}]
61-
indent_style = space
62-
indent_size = 4
63-
64-
[composer.json]
65-
indent_style = space
66-
indent_size = 4
67-
68-
[docker-compose{,.override}.{yaml,yml}]
69-
indent_style = space
70-
indent_size = 2
71-
72-
[Dockerfile]
73-
indent_style = tab
74-
indent_size = 4
75-
76-
[package.json]
77-
indent_style = space
78-
indent_size = 2
79-
80-
[phpspec.yml{,.dist}]
81-
indent_style = space
82-
indent_size = 4
83-
84-
[phpstan.neon]
85-
indent_style = tab
86-
indent_size = 4
87-
88-
[phpunit.xml{,.dist}]
89-
indent_style = space
90-
indent_size = 4

.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 security@setono.com
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

.github/dependabot.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,15 @@
33
version: 2
44

55
updates:
6-
- commit-message:
7-
include: "scope"
8-
prefix: "composer"
9-
directory: "/"
10-
package-ecosystem: "composer"
11-
schedule:
12-
interval: "daily"
13-
14-
- commit-message:
15-
include: "scope"
16-
prefix: "github-actions"
17-
directory: "/"
18-
package-ecosystem: "github-actions"
19-
schedule:
20-
interval: "daily"
6+
- commit-message:
7+
include: "scope"
8+
prefix: "composer"
9+
directory: "/"
10+
ignore:
11+
- dependency-name: "symfony*"
12+
- dependency-name: "sylius/sylius"
13+
open-pull-requests-limit: 10
14+
package-ecosystem: "composer"
15+
schedule:
16+
interval: "weekly"
17+
versioning-strategy: "increase"

0 commit comments

Comments
 (0)