-
Notifications
You must be signed in to change notification settings - Fork 175
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
Symfony 4 support #295
Symfony 4 support #295
Changes from 10 commits
a7120cf
9d414ee
65654ad
05c1d8c
fe76897
e498fce
8dea18e
7eaf83a
b64d4e0
8343b24
a041cc2
389b4cf
96cca4a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,35 +16,36 @@ | |
|
||
"require": { | ||
"php":">=5.4", | ||
"symfony/framework-bundle": "^2.4|^3.0", | ||
"symfony/finder": "^2.4|^3.0", | ||
"symfony/translation": "^2.4|^3.0", | ||
"symfony/asset": "^2.4|^3.0", | ||
"symfony/templating": "^2.4|^3.0", | ||
"symfony/framework-bundle": "^2.4|^3.0|^4.0", | ||
"symfony/finder": "^2.4|^3.0|^4.0", | ||
"symfony/translation": "^2.4|^3.0|^4.0", | ||
"symfony/asset": "^2.4|^3.0|^4.0", | ||
"symfony/templating": "^2.4|^3.0|^4.0", | ||
"paragonie/random_compat": "^1.1|^2.0" | ||
}, | ||
|
||
"require-dev": { | ||
"amazonwebservices/aws-sdk-for-php": "1.5.*", | ||
"knplabs/gaufrette": "0.2.*@dev", | ||
"oneup/flysystem-bundle": "^1.2", | ||
"oneup/flysystem-bundle": "^3.0", | ||
"phpunit/phpunit": "^4.4", | ||
"sensio/framework-extra-bundle": "2.*|^3.0", | ||
"symfony/browser-kit": "2.*|^3.0", | ||
"symfony/class-loader": "2.*|^3.0", | ||
"symfony/security-bundle": "2.*|^3.0", | ||
"symfony/browser-kit": "2.*|^3.0|^4.0", | ||
"symfony/class-loader": "2.*|^3.0|^4.0", | ||
"symfony/security-bundle": "2.*|^3.0|^4.0", | ||
"twistor/flysystem-stream-wrapper": "^1.0" | ||
}, | ||
|
||
"suggest": { | ||
"knplabs/knp-gaufrette-bundle": "0.1.*", | ||
"oneup/flysystem-bundle": "^1.2", | ||
"oneup/flysystem-bundle": "^3.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, didnt' see it's only a suggest. Then you're right! |
||
"twistor/flysystem-stream-wrapper": "^1.0 (Required when using Flysystem)" | ||
}, | ||
|
||
"autoload": { | ||
"psr-0": { "Oneup\\UploaderBundle": "" } | ||
}, | ||
|
||
"target-dir": "Oneup/UploaderBundle" | ||
"target-dir": "Oneup/UploaderBundle", | ||
"minimum-stability": "beta" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
<phpunit bootstrap="./Tests/bootstrap.php" colors="true"> | ||
<php> | ||
<server name="KERNEL_CLASS" value="Oneup\UploaderBundle\Tests\App\AppKernel" /> | ||
<server name="KERNEL_DIR" value="Tests/App" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
</php> | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
namespace Oneup\UploaderBundle\Tests\App;