Issues (30)

config/module.config.php (1 issue)

1
<?php
2
3
namespace AnyCloud;
4
5
return [
6
    'view_manager' => [
7
        'template_path_stack' => [
8
            dirname(__DIR__).'/view',
9
        ],
10
    ],
11
    'form_elements' => [
12
        'factories' => [
13
            Form\ConfigForm::class => Service\Form\ConfigFormFactory::class,
14
        ],
15
    ],
16
    'service_manager' => [
17
        'factories' => [
18
            File\Store\AnyCloud::class => Service\File\Store\AnyCloudFactory::class,
0 ignored issues
show
The type AnyCloud\File\Store\AnyCloud was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
19
20
            File\Store\Aws::class          => Service\File\Store\AwsFactory::class,
21
            File\Store\Azure::class        => Service\File\Store\AzureFactory::class,
22
            File\Store\DigitalOcean::class => Service\File\Store\DigitalOceanFactory::class,
23
            File\Store\Dropbox::class      => Service\File\Store\DropboxFactory::class,
24
            File\Store\Google::class       => Service\File\Store\GoogleFactory::class,
25
            File\Store\Scaleway::class     => Service\File\Store\ScalewayFactory::class,
26
            File\Store\Wasabi::class       => Service\File\Store\WasabiFactory::class,
27
        ],
28
    ],
29
    'anycloud' => [
30
        'config' => [
31
            'anycloud_adapter'       => ['adapter' => 'default'],
32
            'anycloud_aws'           => [],
33
            'anycloud_wasabi'        => [],
34
            'anycloud_digital_ocean' => [],
35
            'anycloud_scaleway'      => [],
36
            'anycloud_azure'         => [],
37
            'anycloud_dropbox'       => [],
38
            'anycloud_google'        => [
39
                'google_credentials_path' => '/src/Service/File/Adapter/Google/{CONFIG}.json',
40
                'google_storage_uri'      => 'https://storage.googleapis.com',
41
            ],
42
        ],
43
    ],
44
];
45