Skip to content

Commit a128a1f

Browse files
committed
vendor update and build/mgmt improvements
1 parent aae721f commit a128a1f

5 files changed

+69
-59
lines changed

.gitattributes

+46-44
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,52 @@
1-
# .gitattributes snippet to force users to use same line endings for project.
2-
#
3-
# Handle line endings automatically for files detected as text
4-
# and leave all files detected as binary untouched.
5-
* text=auto
1+
# .gitattributes snippet to force users to use same line endings for project.
2+
#
3+
# Handle line endings automatically for files detected as text
4+
# and leave all files detected as binary untouched.
5+
* text=auto
66

7-
#
8-
# The above will handle all files NOT found below
9-
# https://help.github.com/articles/dealing-with-line-endings/
10-
# https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
7+
#
8+
# The above will handle all files NOT found below
9+
# https://help.github.com/articles/dealing-with-line-endings/
10+
# https://github.com/Danimoth/gitattributes/blob/master/Web.gitattributes
1111

1212

1313

14-
# These files are text and should be normalized (Convert crlf => lf)
15-
*.php text
16-
*.css text
17-
*.js text
18-
*.json text
19-
*.htm text
20-
*.html text
21-
*.xml text
22-
*.txt text
23-
*.ini text
24-
*.inc text
25-
*.pl text
26-
*.rb text
27-
*.py text
28-
*.scm text
29-
*.sql text
14+
# These files are text and should be normalized (Convert crlf => lf)
15+
*.php text
16+
*.css text
17+
*.js text
18+
*.json text
19+
*.htm text
20+
*.html text
21+
*.xml text
22+
*.txt text
23+
*.ini text
24+
*.inc text
25+
*.pl text
26+
*.rb text
27+
*.py text
28+
*.scm text
29+
*.sql text
3030
.htaccess text
31-
*.sh text
31+
*.sh text
3232

33-
# These files are binary and should be left untouched
34-
# (binary is a macro for -text -diff)
35-
*.png binary
36-
*.jpg binary
37-
*.jpeg binary
38-
*.gif binary
39-
*.ico binary
40-
*.mov binary
41-
*.mp4 binary
42-
*.mp3 binary
43-
*.flv binary
44-
*.fla binary
45-
*.swf binary
46-
*.gz binary
47-
*.zip binary
48-
*.7z binary
49-
*.ttf binary
50-
*.pyc binary
33+
# These files are binary and should be left untouched
34+
# (binary is a macro for -text -diff)
35+
*.png binary
36+
*.jpg binary
37+
*.jpeg binary
38+
*.gif binary
39+
*.ico binary
40+
*.mov binary
41+
*.mp4 binary
42+
*.mp3 binary
43+
*.flv binary
44+
*.fla binary
45+
*.swf binary
46+
*.gz binary
47+
*.zip binary
48+
*.7z binary
49+
*.ttf binary
50+
*.pyc binary
51+
52+
/composer.lock -merge

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ before_install:
2727
# Set the COMPOSER_ROOT_VERSION to the right version according to the branch being built
2828
- if [ "$TRAVIS_BRANCH" = "master" ]; then export COMPOSER_ROOT_VERSION=dev-master; else export COMPOSER_ROOT_VERSION="$TRAVIS_BRANCH".x-dev; fi;
2929

30-
- composer install -o --no-scripts
30+
- composer validate --no-check-all --strict
31+
- composer install -o --no-scripts --no-suggest
3132
- composer run-script post-autoload-dump
3233
- composer run-script post-install-cmd
3334

@@ -109,5 +110,5 @@ script:
109110
# execute Symfony deprecation detector
110111
- git clone https://github.com/sensiolabs-de/deprecation-detector.git
111112
- cd deprecation-detector
112-
- composer install
113+
- composer install --no-suggest
113114
- ./bin/deprecation-detector check src vendor

CHANGELOG-3.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@
276276
- twig/inky-extra installed in 3.0.1
277277
- twig/intl-extra installed in 3.0.1
278278
- twig/markdown-extra installed in 3.0.1
279-
- twig/string-extra installed in 3.0.1
279+
- twig/string-extra installed in 3.0.1 (currently 3.x-dev)
280280
- twig/twig updated from 1.42.4 to 3.0.1
281281
- webmozart/assert updated from 1.5.0 to 1.6.0
282282
- willdurand/js-translation-bundle updated from 2.6.6 to 3.0.0

composer.json

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
]
4343
},
4444
"config": {
45+
"platform": {
46+
"php": "7.2.5"
47+
},
48+
"sort-packages": true,
4549
"bin-dir": "bin",
4650
"component-dir": "public",
4751
"public-dir": "public",

composer.lock

+15-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)