diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2020-05-25 06:16:16 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2020-05-25 06:28:04 +0200 |
commit | 2a74acb77ff7f6bd107a9d7856c89da62d429e24 (patch) | |
tree | 4e03f9d555805d9e4255f28811db24b31af342ab /app/AppKernel.php | |
parent | 372810b687e767a7f1114fded82955397bb88040 (diff) | |
download | wallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.tar.gz wallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.tar.zst wallabag-2a74acb77ff7f6bd107a9d7856c89da62d429e24.zip |
Update deps
- Clean Travis config file
- Only cache deps from composer (avoiding metadata to invalid Travis cache)
- Update config file to match future version from Travis
- Remove useless (not so working) `travis_fold`
- Remove `SensioGeneratorBundle` and use `MakerBundle`
```
Package sensio/generator-bundle is abandoned, you should avoid using it. Use symfony/maker-bundle instead.
```
- Sort packages in `composer.json`
- Use `laminas/*` package to remove deprecated `zendframework/*` ones:
```
Package zendframework/zend-code is abandoned, you should avoid using it. Use laminas/laminas-code instead.
Package zendframework/zend-diactoros is abandoned, you should avoid using it. Use laminas/laminas-diactoros instead.
Package zendframework/zend-eventmanager is abandoned, you should avoid using it. Use laminas/laminas-eventmanager instead.
```
Diffstat (limited to 'app/AppKernel.php')
-rw-r--r-- | app/AppKernel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php index fcf929c6..7b84e130 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php | |||
@@ -56,7 +56,7 @@ class AppKernel extends Kernel | |||
56 | } | 56 | } |
57 | 57 | ||
58 | if ('dev' === $this->getEnvironment()) { | 58 | if ('dev' === $this->getEnvironment()) { |
59 | $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); | 59 | $bundles[] = new Symfony\Bundle\MakerBundle\MakerBundle(); |
60 | $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle(); | 60 | $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle(); |
61 | } | 61 | } |
62 | } | 62 | } |