Issues (69)

config/services.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
5
    /*
6
    |--------------------------------------------------------------------------
7
    | Third Party Services
8
    |--------------------------------------------------------------------------
9
    |
10
    | This file is for storing the credentials for third party services such
11
    | as Stripe, Mailgun, SparkPost and others. This file provides a sane
12
    | default location for this type of information, allowing packages
13
    | to have a conventional place to find your various credentials.
14
    |
15
    */
16
17
    'mailgun' => [
18
        'domain' => env('MAILGUN_DOMAIN'),
19
        'secret' => env('MAILGUN_SECRET'),
20
    ],
21
22
    'ses' => [
23
        'key'    => env('SES_KEY'),
24
        'secret' => env('SES_SECRET'),
25
        'region' => 'us-east-1',
26
    ],
27
28
    'sparkpost' => [
29
        'secret' => env('SPARKPOST_SECRET'),
30
    ],
31
32
    'stripe' => [
33
        'model'  => LaravelSeed\User::class,
0 ignored issues
show
The type LaravelSeed\User 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...
34
        'key'    => env('STRIPE_KEY'),
35
        'secret' => env('STRIPE_SECRET'),
36
    ],
37
38
];
39