mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
Sylius\Component\Core\Model\Address:
|
|
address:
|
|
firstName: "John"
|
|
lastName: "Doe"
|
|
customer: '@customer_tony'
|
|
company: "CocaCola"
|
|
street: "Green Avenue"
|
|
countryCode: "US"
|
|
city: "New York"
|
|
postcode: "00000"
|
|
phoneNumber: "123456789"
|
|
provinceCode: "999"
|
|
provinceName: "east"
|
|
|
|
Sylius\Component\Customer\Model\CustomerGroup:
|
|
group_premium:
|
|
code: 'premium'
|
|
name: 'Premium'
|
|
|
|
Sylius\Component\Core\Model\ShopUser:
|
|
shop_user_{oliver}:
|
|
plainPassword: "sylius"
|
|
roles: [ROLE_USER]
|
|
enabled: true
|
|
customer: "@customer_<current()>"
|
|
username: "<current()>\\@doe.com"
|
|
usernameCanonical: "<current()>\\@doe.com"
|
|
shop_user_{dave}:
|
|
plainPassword: "sylius"
|
|
roles: [ROLE_USER]
|
|
enabled: false
|
|
customer: "@customer_<current()>"
|
|
username: "<current()>\\@doe.com"
|
|
usernameCanonical: "<current()>\\@doe.com"
|
|
shop_user_{tony}:
|
|
plainPassword: "sylius"
|
|
roles: [ROLE_USER]
|
|
enabled: true
|
|
verifiedAt: "<(new \\DateTime())>"
|
|
customer: "@customer_<current()>"
|
|
username: "<current()>\\@doe.com"
|
|
usernameCanonical: "<current()>\\@doe.com"
|
|
|
|
Sylius\Component\Core\Model\Customer:
|
|
customer_{oliver, dave}:
|
|
firstName: "<current()>"
|
|
lastName: "Doe"
|
|
email: "<current()>\\@doe.com"
|
|
emailCanonical: "<current()>\\@doe.com"
|
|
birthday: "<(new \\DateTime())>"
|
|
group: '@group_premium'
|
|
customer_{tony}:
|
|
firstName: "<current()>"
|
|
lastName: "Doe"
|
|
email: "<current()>\\@doe.com"
|
|
emailCanonical: "<current()>\\@doe.com"
|
|
birthday: "<(new \\DateTime())>"
|
|
defaultAddress: '@address'
|