Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a488d55

Browse files
Merge branch '3.4' into 4.0
* 3.4: Remove symfony/polyfill-ctype where not needed Use symfony/polyfill-ctype [Form] fixes instance variable phpdoc in FormRegistry class bumped Symfony version to 3.4.10 updated VERSION for 3.4.9 updated CHANGELOG for 3.4.9 Add CODE_OF_CONDUCT.md Added .github/CODEOWNERS bumped Symfony version to 2.8.40 updated VERSION for 2.8.39 updated CHANGELOG for 2.8.39
2 parents 7ab4e4b + e525248 commit a488d55

File tree

17 files changed

+43
-7
lines changed

17 files changed

+43
-7
lines changed

.github/CODEOWNERS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# LDAP
2+
/src/Symfony/Component/Ldap/* @csarrazi
3+
# Lock
4+
/src/Symfony/Component/Lock/* @jderusse
5+
# Messenger
6+
/src/Symfony/Bridge/Doctrine/Messenger/* @sroze
7+
/src/Symfony/Component/Messenger/* @sroze
8+
# Workflow
9+
/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php @lyrixx
10+
/src/Symfony/Bridge/Twig/Tests/Extension/WorkflowExtensionTest.php @lyrixx
11+
/src/Symfony/Bundle/FrameworkBundle/Command/WorkflowDumpCommand.php @lyrixx
12+
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ValidateWorkflowsPass.php @lyrixx
13+
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php @lyrixx
14+
/src/Symfony/Component/Workflow/* @lyrixx

.github/CODE_OF_CONDUCT.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Code of Conduct
2+
3+
This project follows a [Code of Conduct][code_of_conduct] in order to ensure an open and welcoming environment.
4+
Please read the full text for understanding the accepted and unaccepted behavior.
5+
Please read also the [reporting guidelines][guidelines], in case you encountered or witnessed any misbehavior.
6+
7+
[code_of_conduct]: https://symfony.com/doc/current/contributing/code_of_conduct/index.html
8+
[guidelines]: https://symfony.com/doc/current/contributing/code_of_conduct/reporting_guidelines.html

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"psr/link": "^1.0",
2727
"psr/log": "~1.0",
2828
"psr/simple-cache": "^1.0",
29+
"symfony/polyfill-ctype": "~1.8",
2930
"symfony/polyfill-intl-icu": "~1.0",
3031
"symfony/polyfill-mbstring": "~1.0",
3132
"symfony/polyfill-php72": "~1.5"

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"require": {
1919
"php": "^7.1.3",
2020
"doctrine/common": "~2.4",
21+
"symfony/polyfill-ctype": "~1.8",
2122
"symfony/polyfill-mbstring": "~1.0"
2223
},
2324
"require-dev": {

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/twig-bridge": "^3.4.3|^4.0.3",
2222
"symfony/http-foundation": "~3.4|~4.0",
2323
"symfony/http-kernel": "~3.4|~4.0",
24+
"symfony/polyfill-ctype": "~1.8",
2425
"twig/twig": "~1.34|~2.4"
2526
},
2627
"require-dev": {

src/Symfony/Bundle/WebServerBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/console": "~3.4|~4.0",
2222
"symfony/dependency-injection": "~3.4|~4.0",
2323
"symfony/http-kernel": "~3.4|~4.0",
24+
"symfony/polyfill-ctype": "~1.8",
2425
"symfony/process": "^3.4.2|^4.0.2"
2526
},
2627
"autoload": {

src/Symfony/Component/Config/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20-
"symfony/filesystem": "~3.4|~4.0"
20+
"symfony/filesystem": "~3.4|~4.0",
21+
"symfony/polyfill-ctype": "~1.8"
2122
},
2223
"require-dev": {
2324
"symfony/dependency-injection": "~3.4|~4.0",

src/Symfony/Component/DomCrawler/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8",
2021
"symfony/polyfill-mbstring": "~1.0"
2122
},
2223
"require-dev": {

src/Symfony/Component/Filesystem/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\Filesystem\\": "" },

src/Symfony/Component/Form/FormRegistry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class FormRegistry implements FormRegistryInterface
3131
private $extensions = array();
3232

3333
/**
34-
* @var FormTypeInterface[]
34+
* @var ResolvedFormTypeInterface[]
3535
*/
3636
private $types = array();
3737

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "~3.4|~4.0",
2121
"symfony/intl": "~3.4|~4.0",
2222
"symfony/options-resolver": "~3.4|~4.0",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"symfony/polyfill-mbstring": "~1.0",
2425
"symfony/property-access": "~3.4|~4.0"
2526
},

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "~3.4|~4.0",
2121
"symfony/http-foundation": "~3.4.4|~4.0.4",
2222
"symfony/debug": "~3.4|~4.0",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"psr/log": "~1.0"
2425
},
2526
"require-dev": {

src/Symfony/Component/Inflector/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.1.3"
26+
"php": "^7.1.3",
27+
"symfony/polyfill-ctype": "~1.8"
2728
},
2829
"autoload": {
2930
"psr-4": { "Symfony\\Component\\Inflector\\": "" },

src/Symfony/Component/Serializer/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"symfony/yaml": "~3.4|~4.0",

src/Symfony/Component/Templating/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"psr/log": "~1.0"

src/Symfony/Component/Validator/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8",
2021
"symfony/polyfill-mbstring": "~1.0",
2122
"symfony/translation": "~3.4|~4.0"
2223
},

src/Symfony/Component/Yaml/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"symfony/console": "~3.4|~4.0"

0 commit comments

Comments
 (0)