-
Notifications
You must be signed in to change notification settings - Fork 535
TIP-747: upgrade the PIM from sf 2.8 to 3 #6374
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
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
db6b446
TIP-747: Update Symfony to 3.2
anaelChardan ff4c597
TIP-747: Config and missing quotes
anaelChardan 501d2cf
TIP-747: Doctrine config
anaelChardan 101c356
TIP-747: Fix form thing
anaelChardan 73502f7
TIP-747: Fix Router and Query related things
anaelChardan 210bf42
TIP-747: Fix Validator things
anaelChardan 1e9868e
TIP-747: Fix Oro related things
anaelChardan fd87f9e
TIP-747: Fix Tests
anaelChardan 8fc3d21
TIP-747: fix association type
e3dffde
TIP-747: fix form type in import/export
b8df6ef
TIP-747: reverse label/code for form type
72f6436
TIP-747: fix user form type
11f1f58
TIP-747: fix variant group form type
e977d1d
TIP-747: fix comment form type
4a82bc2
TIP-747: fix acl form type
7e0c0b7
TIP-747: fix deprecated options
4b87db7
TIP-747: remove the useless clear of the unit of work
64919f8
TIP-747: call doctrine ClassUtils instead of deprecated method in Sym…
9fbdfe8
TIP-747: change namespace to remove deprecated ValidatorInterface
b70f25b
TIP-747: add explicite json format for route
5d85588
TIP-747: add logs dir in command launcher
65617ff
TIP-747: update Symfony from 3.2 to 3.3
ba9d2d7
TIP-747: fix configuration of extension
40db29b
TIP-747: use Sf 3.3 front controllers
89a98e4
TIP-747: remove deprecated call
2b1e0ef
TIP-747: remove call of deprecated SerializerAwareNormalizer and use …
066a642
TIP-747: implode locales as ArrayInput allows only a string
7976040
TIP-747: add BC break because of the migration
35053fb
TIP-747: upgrade dependencies
5e0180a
TIP-747: use symfony normalizer instead of JMS
24d9169
TIP-747: configure php-cs-fixer to avoid alignement on multiline
2fdba4e
TIP-747: fix php-cs-fixer
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 |
|---|---|---|
|
|
@@ -12,8 +12,11 @@ app/AppKernel_local.php | |
| app/console_local | ||
| app/archive/* | ||
| app/cache/* | ||
| var/cache/* | ||
| app/config/*_local.yml | ||
| app/logs/* | ||
|
Contributor
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. Remove it?
Contributor
Author
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. Same |
||
| var/logs/* | ||
| var/bootstrap.php.cache | ||
| app/import/* | ||
| app/export/* | ||
| app/emails/* | ||
|
|
@@ -32,6 +35,7 @@ composer.phar | |
| !/bin/docker/pim-initialize.sh | ||
| !/bin/docker/pim-front.sh | ||
| !/bin/merge-coverage | ||
| !bin/console | ||
| behat.yml | ||
| /phpspec.yml | ||
| uploads_test/ | ||
|
|
||
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
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
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 |
|---|---|---|
| @@ -1,16 +1,15 @@ | ||
| <?php | ||
|
|
||
| use Composer\Autoload\ClassLoader; | ||
| use Doctrine\Common\Annotations\AnnotationRegistry; | ||
| use Composer\Autoload\ClassLoader; | ||
|
|
||
| /** | ||
| * @var $loader ClassLoader | ||
| * @var ClassLoader $loader | ||
| */ | ||
| $loader = require __DIR__.'/../vendor/autoload.php'; | ||
|
|
||
| // add possibility to extends doctrine unit test and use mocks | ||
| $loader->add( 'Doctrine\\Tests', __DIR__.'/../vendor/doctrine/orm/tests' ); | ||
|
|
||
| AnnotationRegistry::registerLoader(array($loader, 'loadClass')); | ||
| AnnotationRegistry::registerLoader([$loader, 'loadClass']); | ||
|
|
||
| return $loader; |
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.
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.
Remove it?
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.
No, because if peoples update their PIM they will keep the app/cache folder and you will have to pay attention to not push it, it costs nothing to keep it.