This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# This is a combination of 29 commits.
# This is the 1st commit message: DevKit updates # This is the commit message #2: improvements to get the tests running # This is the commit message #3: try to call unit tests only # This is the commit message #4: DevKit updates # This is the commit message #5: add correct cache/log path to gitignor # This is the commit message #6: DevKit updates # This is the commit message #7: DevKit updates # This is the commit message #8: DevKit updates # This is the commit message #9: DevKit updates # This is the commit message #10: DevKit updates # This is the commit message #11: DevKit updates # This is the commit message #12: restriction on sebastion/exporter # This is the commit message #13: fix composer.json # This is the commit message #14: use higher versions # This is the commit message #15: use higher version # This is the commit message #16: DevKit updates # This is the commit message #17: DevKit updates # This is the commit message #18: DevKit updates # This is the commit message #19: try verbose # This is the commit message #20: try testdox # This is the commit message #21: try makefile change # This is the commit message #22: try travis # This is the commit message #23: back # This is the commit message #24: restrict sebastianbergmann/environment # This is the commit message #25: restrict sebastianbergmann/environment # This is the commit message #26: try to turn around # This is the commit message #27: support symfony 3.4, new testing app folder structure # This is the commit message #28: support symfony 3.4, new testing app folder structure # This is the commit message #29: use caret operator for symfony-cmf/resource-bundle
- Loading branch information
1 parent
091670c
commit a3f6d71
Showing
26 changed files
with
303 additions
and
180 deletions.
There are no files selected for viewing
This file contains 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,23 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_style = space | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{yml,twig,php}] | ||
indent_size = 4 | ||
|
||
[*.{js,json,scss,css}] | ||
indent_size = 2 | ||
|
||
[.travis.yml] | ||
indent_size = 2 | ||
|
||
[composer.json] | ||
indent_size = 4 | ||
|
||
[Makefile] | ||
indent_style = tab |
This file contains 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,3 @@ | ||
.* export-ignore | ||
*.md export-ignore | ||
Tests/* export-ignore |
This file contains 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,43 @@ | ||
<!-- | ||
Before you open an issue, make sure this one does not already exist. | ||
Please also read the "guidelines for contributing" link above before posting. | ||
--> | ||
|
||
<!-- | ||
If you are reporting a bug, please try to fill in the following. | ||
Otherwise remove it. | ||
--> | ||
|
||
### Environment | ||
|
||
#### Symfony packages | ||
|
||
``` | ||
$ composer show --latest 'symfony/*' | ||
``` | ||
|
||
#### Symfony CMF packages | ||
|
||
``` | ||
$ composer show --latest 'symfony-cmf/*' | ||
``` | ||
|
||
## Subject | ||
|
||
<!-- | ||
Give here as many details as possible. | ||
Next sections are for ERRORS only. | ||
--> | ||
|
||
## Steps to reproduce | ||
|
||
## Expected results | ||
|
||
## Actual results | ||
|
||
<!-- | ||
If it's an error message or piece of code, use code block tags, | ||
and make sure you provide the whole stack trace(s), | ||
not just the first error message you can see. | ||
More details here: https://github.com/symfony-cmf/resource-rest-bundle/blob/master/CONTRIBUTING.md#issues | ||
--> |
This file contains 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,10 @@ | ||
| Q | A | ||
| ------------- | --- | ||
| Branch? | "master" for new features / the branch of the current release for fixes | ||
| Bug fix? | yes/no | ||
| New feature? | yes/no | ||
| BC breaks? | yes/no | ||
| Deprecations? | yes/no | ||
| Fixed tickets | comma-separated list of tickets fixed by the PR, if any | ||
| License | MIT | ||
| Doc PR | reference to the documentation PR, if any |
This file contains 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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
Tests/Resources/app/cache | ||
Tests/Resources/app/logs | ||
Tests/Resources/data | ||
tests/Fixtures/App/var | ||
!tests/Fixtures/App/var/.gitempty | ||
composer.lock | ||
vendor |
This file contains 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 |
---|---|---|
@@ -1,7 +1,29 @@ | ||
####################################################### | ||
# DO NOT EDIT THIS FILE! # | ||
# # | ||
# It's auto-generated by symfony-cmf/dev-kit package. # | ||
####################################################### | ||
|
||
############################################################################ | ||
# This file is part of the Symfony CMF package. # | ||
# # | ||
# (c) 2011-2017 Symfony CMF # | ||
# # | ||
# For the full copyright and license information, please view the LICENSE # | ||
# file that was distributed with this source code. # | ||
############################################################################ | ||
|
||
|
||
preset: symfony | ||
|
||
enabled: | ||
- ordered_use | ||
- combine_consecutive_unsets | ||
- short_array_syntax | ||
|
||
- newline_after_open_tag | ||
- no_php4_constructor | ||
- no_useless_else | ||
- ordered_use | ||
- strict | ||
- php_unit_construct | ||
|
||
disabled: [single_line_class_definition] |
This file contains 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 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 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,34 @@ | ||
####################################################### | ||
# DO NOT EDIT THIS FILE! # | ||
# # | ||
# It's auto-generated by symfony-cmf/dev-kit package. # | ||
####################################################### | ||
|
||
############################################################################ | ||
# This file is part of the Symfony CMF package. # | ||
# # | ||
# (c) 2011-2017 Symfony CMF # | ||
# # | ||
# For the full copyright and license information, please view the LICENSE # | ||
# file that was distributed with this source code. # | ||
############################################################################ | ||
|
||
TESTING_SCRIPTS_DIR=vendor/symfony-cmf/testing/bin | ||
CONSOLE=${TESTING_SCRIPTS_DIR}/console | ||
VERSION=dev-master | ||
ifdef BRANCH | ||
VERSION=dev-${BRANCH} | ||
endif | ||
PACKAGE=symfony-cmf/resource-rest-bundle | ||
export KERNEL_CLASS=Symfony\Cmf\Bundle\ResourceRestBundle\Tests\Fixtures\App\Kernel | ||
list: | ||
@echo 'test: will run all tests' | ||
@echo 'unit_tests: will run unit tests only' | ||
|
||
|
||
@echo 'test_installation: will run installation test' | ||
include ${TESTING_SCRIPTS_DIR}/make/unit_tests.mk | ||
include ${TESTING_SCRIPTS_DIR}/make/test_installation.mk | ||
|
||
.PHONY: test | ||
test: unit_tests |
Oops, something went wrong.