-
Notifications
You must be signed in to change notification settings - Fork 33
Add support for doctrine bundle v3 #400
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
Changes from all commits
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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| doctrine: | ||
| dbal: | ||
| default_connection: default | ||
| connections: | ||
| default: | ||
| driver: pdo_sqlite | ||
| path: '%kernel.cache_dir%/test.sqlite' | ||
| types: | ||
| dummy_object_id: Meilisearch\Bundle\Tests\Dbal\Type\DummyObjectIdType | ||
| orm: | ||
| naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware | ||
| auto_mapping: true | ||
| mappings: | ||
| App: | ||
| is_bundle: false | ||
| type: attribute | ||
| dir: '%kernel.project_dir%/tests/Entity' | ||
| prefix: 'Meilisearch\Bundle\Tests\Entity' | ||
| alias: App |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,4 @@ | ||||||
| framework: | ||||||
| test: true | ||||||
| secret: 67d829bf61dc5f87a73fd814e2c9f629 | ||||||
|
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. Avoid key-like test secret to silence secret scanners. Use a clearly non-secret value or env var to prevent gitleaks noise. Apply one of: -framework:
- test: true
- secret: 67d829bf61dc5f87a73fd814e2c9f629
- http_method_override: false
+framework:
+ test: true
+ secret: 'test_secret_value'
+ http_method_override: falseor (if you prefer env): - secret: 67d829bf61dc5f87a73fd814e2c9f629
+ secret: '%env(string:default::TEST_APP_SECRET)%'Add TEST_APP_SECRET to CI env if using the second option. 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Gitleaks (8.28.0)[high] 3-3: Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (generic-api-key) 🤖 Prompt for AI Agents |
||||||
| http_method_override: false | ||||||
Uh oh!
There was an error while loading. Please reload this page.