Skip to content

Instantly share code, notes, and snippets.

@Zayon
Created December 31, 2018 15:05
Show Gist options
  • Save Zayon/34d3d2c21eaf15b48b543cc671d19a11 to your computer and use it in GitHub Desktop.
Save Zayon/34d3d2c21eaf15b48b543cc671d19a11 to your computer and use it in GitHub Desktop.
Fixtures - list-products.yaml
App\Entity\ProductCategory:
category_tools:
name: 'tools'
category_lighting:
name: 'lighting'
App\Entity\Product:
tools_products_{1..10}:
name: '<firstName()>'
category: '@category_tools' # reference to "category_tools" fixture
price: '<randomFloat(2, 10.00, 1000.00)>' # random price from 10 to 1000 euros
lighting_products_{1..5}:
name: '<firstName()>'
category: '@category_lighting' # reference to "category_lighting" fixture
price: '<randomFloat(2, 10.00, 1000.00)>' # random price from 10 to 1000 euros
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment