Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 13dbd54

Browse files
committed
Update build
1 parent d2c0bc9 commit 13dbd54

4 files changed

Lines changed: 12 additions & 26 deletions

File tree

.editorconfig

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
11
# EditorConfig is awesome: http://EditorConfig.org
22

3-
# Top-most EditorConfig file
43
root = true
54

6-
# Unix-style newlines with a newline ending every file
75
[*]
6+
charset = utf-8
87
end_of_line = lf
98
insert_final_newline = true
10-
11-
# JS / PHP
12-
[*.{js,php,phpt}]
13-
charset = utf-8
14-
indent_style = tab
15-
indent_size = 4
16-
17-
# NEON
18-
[*.neon]
19-
charset = utf-8
9+
trim_trailing_whitespace = true
2010
indent_style = tab
21-
indent_size = 4
11+
indent_size = tab
12+
tab_width = 4
2213

23-
# Composer, NPM, Travis, BitbucketPipelines
24-
[{composer.json,package.json,.travis.yml,bitbucket-pipelines.yml}]
14+
[{*.json,*.yml,*.md}]
2515
indent_style = space
2616
indent_size = 2

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# IDE
2+
.idea
3+
14
# Composer
25
/vendor
36
/composer.lock

.travis.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: php
22
php:
3-
- 7.1
43
- 7.2
4+
- 7.3
55

66
before_install:
77
# turn off XDebug
@@ -17,17 +17,10 @@ script:
1717

1818
jobs:
1919
include:
20-
- env: title="Lowest Dependencies 7.1"
21-
php: 7.1
22-
install:
23-
- travis_retry composer update --no-progress --prefer-dist --prefer-lowest
24-
script:
25-
- echo "OK"
26-
27-
- env: title="Lowest Dependencies 7.2"
20+
- env: title="Lowest Dependencies"
2821
php: 7.2
2922
install:
30-
- travis_retry composer update --no-progress --prefer-dist --prefer-lowest
23+
- travis_retry composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
3124
script:
3225
- echo "OK"
3326

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">= 7.1",
15+
"php": "^7.2",
1616
"apitte/core": "^0.6.0",
1717
"apitte/middlewares": "^0.6.0",
1818
"apitte/negotiation": "^0.6.0",

0 commit comments

Comments
 (0)