Skip to content

Commit

Permalink
Fix minimum required versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jsor committed Nov 20, 2015
1 parent 69b661e commit 51fad1f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
20 changes: 11 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"require": {
"php": ">=5.4.0",
"symfony/http-foundation": "~2.1",
"symfony/http-kernel": "~2.1",
"nocarrier/hal": "~0.9"
"symfony/http-kernel": "~2.4",
"nocarrier/hal": "^0.9.4"
},
"suggest": {
"symfony/event-dispatcher": "For using the event listeners",
Expand All @@ -25,17 +25,19 @@
"willdurand/stack-negotiation": "For using RequestFormatNegotiator"
},
"require-dev": {
"symfony/event-dispatcher": "~2.1",
"psr/log": "~1.0",

"symfony/config": "~2.0",
"symfony/dependency-injection": "~2.0",
"symfony/event-dispatcher": "~2.5",

"symfony/form": "~2.1",
"symfony/validator": "~2.1",
"symfony/security-core": "~2.1",
"symfony/config": "~2.5",
"symfony/dependency-injection": "~2.5",

"willdurand/negotiation": "~1.3",
"symfony/form": "~2.5",
"symfony/translation": "~2.5",
"symfony/validator": "~2.5",
"symfony/security-core": "~2.5",

"willdurand/negotiation": "^1.3.4",
"willdurand/stack-negotiation": "~1.0"
},
"autoload": {
Expand Down
3 changes: 0 additions & 3 deletions tests/Fixtures/Form/PersonType.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ public function buildForm(FormBuilderInterface $builder, array $options)
])
->add('name', new NameType(), [
'mapped' => false,
'constraints' => [
new Valid()
]
]);
}

Expand Down

0 comments on commit 51fad1f

Please sign in to comment.