-
Notifications
You must be signed in to change notification settings - Fork 76
DevKit updates #434
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
DevKit updates #434
Changes from all commits
Commits
Show all changes
68 commits
Select commit
Hold shift + click to select a range
2c31c87
DevKit updates
ElectricMaxxx 9dca91d
DevKit updates
ElectricMaxxx 0d8c215
DevKit updates
ElectricMaxxx af1b1ac
DevKit updates
ElectricMaxxx 566d6c0
DevKit updates
ElectricMaxxx 1d44602
DevKit updates
ElectricMaxxx c3d587a
DevKit updates
ElectricMaxxx e003c37
DevKit updates
ElectricMaxxx 7ed160e
repair composer.json
ElectricMaxxx 2e8ab9f
DevKit updates
ElectricMaxxx 1009440
DevKit updates
ElectricMaxxx 0a69604
DevKit updates
ElectricMaxxx 1af73a1
DevKit updates
ElectricMaxxx 7957521
DevKit updates
ElectricMaxxx 7d0d24a
DevKit updates
ElectricMaxxx bb4bd87
lower versions
ElectricMaxxx 2a38519
fix after merge
ElectricMaxxx 721a46d
back to other version
ElectricMaxxx 1574b05
DevKit updates
ElectricMaxxx 41318e3
add root node
ElectricMaxxx 85f3d81
DevKit updates
ElectricMaxxx 535d218
root node defintion for SF < 4.2 also
ElectricMaxxx a01b7c1
DevKit updates
ElectricMaxxx 979e442
DevKit updates
ElectricMaxxx 9fa3b5f
DevKit updates
ElectricMaxxx f7147a9
DevKit updates
ElectricMaxxx 506f873
DevKit updates
ElectricMaxxx 27f174d
DevKit updates
ElectricMaxxx 960e7c1
DevKit updates
ElectricMaxxx f4bcd29
DevKit updates
ElectricMaxxx d23ae5b
DevKit updates
ElectricMaxxx 4b7b59e
DevKit updates
ElectricMaxxx 3dd4174
DevKit updates
ElectricMaxxx 99dbcb0
DevKit updates
ElectricMaxxx 4da8d7c
DevKit updates
ElectricMaxxx 92ac823
DevKit updates
ElectricMaxxx e2ca86e
DevKit updates
ElectricMaxxx 2dd9501
DevKit updates
ElectricMaxxx 126b503
DevKit updates
ElectricMaxxx f2b5c40
DevKit updates
ElectricMaxxx 7e24c17
DevKit updates
ElectricMaxxx 6d5a19a
DevKit updates
ElectricMaxxx 923bf0d
DevKit updates
ElectricMaxxx 9763716
DevKit updates
ElectricMaxxx 556c273
little bit higher php-odm version
ElectricMaxxx e04d7bc
cs fixes
ElectricMaxxx 0c86e7b
Apply fixes from StyleCI (#435)
ElectricMaxxx de293ec
put some folders into phpunit configuration.
ElectricMaxxx 7f60638
equal instead of same
ElectricMaxxx bb2d2ca
Remove .php-dest from git
ElectricMaxxx 40fa2ac
use more common vesions
ElectricMaxxx f961ab5
fix version string
ElectricMaxxx 0aa620f
check on null before
ElectricMaxxx d8b9f84
DevKit updates
ElectricMaxxx db203e7
string type constraint instead of null check
ElectricMaxxx fe9b49b
add changelog entry
ElectricMaxxx 182307b
add dates to changelog
ElectricMaxxx d9a61f9
also add a null check
ElectricMaxxx 8903b81
should fix test for routing
ElectricMaxxx 9c0b5a3
Some style changes
ElectricMaxxx ded81f8
cs fixes
ElectricMaxxx 95e8033
revert stupid string replace
ElectricMaxxx e852981
revert strpos -> substr change
ElectricMaxxx 8a471da
also cs fix change on master through an rebase
ElectricMaxxx a538d03
adjust some tests comming from master
ElectricMaxxx 1cde57e
fix changelog entry
ElectricMaxxx 836ae68
DevKit updates
ElectricMaxxx 759c9c6
use higher symfony dependency/config testing versions
ElectricMaxxx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,8 @@ phpunit.xml | |
composer.lock | ||
vendor | ||
tests/Fixtures/App/var/ | ||
.phpunit/ | ||
build/ | ||
.roles/ | ||
/.php_cs | ||
.php_cs.cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
|
||
/** | ||
* DO NOT EDIT THIS FILE! | ||
* | ||
* It's auto-generated by sonata-project/dev-kit package. | ||
*/ | ||
|
||
$header = <<<'HEADER' | ||
This file is part of the Symfony CMF package. | ||
|
||
(c) Symfony CMF | ||
|
||
For the full copyright and license information, please view the LICENSE | ||
file that was distributed with this source code. | ||
HEADER; | ||
|
||
$rules = [ | ||
'@Symfony' => true, | ||
'@Symfony:risky' => true, | ||
'array_syntax' => [ | ||
'syntax' => 'short', | ||
], | ||
'combine_consecutive_issets' => true, | ||
'combine_consecutive_unsets' => true, | ||
'header_comment' => [ | ||
'header' => $header, | ||
], | ||
'no_extra_blank_lines' => true, | ||
'no_php4_constructor' => true, | ||
'no_useless_else' => true, | ||
'no_useless_return' => true, | ||
'ordered_class_elements' => true, | ||
'ordered_imports' => true, | ||
'phpdoc_order' => true, | ||
'@PHP56Migration' => true, | ||
'@PHP56Migration:risky' => true, | ||
'@PHPUnit57Migration:risky' => true, | ||
'@PHP70Migration' => true, | ||
'@PHP70Migration:risky' => true, | ||
'@PHPUnit60Migration:risky' => true, | ||
'@PHP71Migration' => true, | ||
'@PHP71Migration:risky' => true, | ||
'compact_nullable_typehint' => true, | ||
'void_return' => null, | ||
'strict_comparison' => true, | ||
'strict_param' => true, | ||
]; | ||
|
||
|
||
$finder = PhpCsFixer\Finder::create() | ||
->in(__DIR__) | ||
->exclude('Tests/Fixtures') | ||
->exclude('tests/Fixtures') | ||
->exclude('Resources/skeleton') | ||
->exclude('Resources/public/vendor') | ||
; | ||
|
||
return PhpCsFixer\Config::create() | ||
->setFinder($finder) | ||
->setRiskyAllowed(true) | ||
->setRules($rules) | ||
->setUsingCache(true) | ||
; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
#!/usr/bin/env sh | ||
set -ev | ||
|
||
coveralls -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env sh | ||
set -ev | ||
|
||
mkdir --parents "${HOME}/bin" | ||
|
||
wget "http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar" --output-document="${HOME}/bin/php-cs-fixer" | ||
chmod u+x "${HOME}/bin/php-cs-fixer" | ||
|
||
composer global require sllh/composer-lint:@stable --prefer-dist --no-interaction | ||
|
||
gem install yaml-lint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env sh | ||
set -ev | ||
|
||
mkdir --parents "${HOME}/bin" | ||
|
||
wget "https://phar.phpunit.de/phpunit-${PHPUNIT_VERSION}.phar" --output-document="${HOME}/bin/phpunit" | ||
chmod u+x "${HOME}/bin/phpunit" | ||
|
||
# Coveralls client install | ||
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar --output-document="${HOME}/bin/coveralls" | ||
chmod u+x "${HOME}/bin/coveralls" | ||
|
||
# To be removed when these issues are resolved: | ||
# https://github.com/composer/composer/issues/5355 | ||
if [ "${COMPOSER_FLAGS}" = '--prefer-lowest' ]; then | ||
composer update --prefer-dist --no-interaction --prefer-stable --quiet | ||
fi | ||
|
||
composer update --prefer-dist --no-interaction --prefer-stable ${COMPOSER_FLAGS} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.