Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Learn PHP Symfony 4 Hands-On Creating Real World Application, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:05:50
    Introduction
  2. Урок 2. 00:02:35
    About Symfony
  3. Урок 3. 00:02:11
    Tools overview
  4. Урок 4. 00:06:10
    Setting up Vagrant on Windows
  5. Урок 5. 00:03:22
    Setting up Vagrant on Ubuntu
  6. Урок 6. 00:04:09
    Setting up Vagrant on MacOS
  7. Урок 7. 00:05:05
    Running Vagrant and creating a new Symfony 4 project
  8. Урок 8. 00:06:23
    Symfony project structure overview
  9. Урок 9. 00:06:11
    About Service Container
  10. Урок 10. 00:04:20
    Autowiring, Autoconfiguring services
  11. Урок 11. 00:05:15
    Public, private services, service aliases
  12. Урок 12. 00:04:55
    Service tags
  13. Урок 13. 00:06:02
    Manual service wiring, parameter binding
  14. Урок 14. 00:12:34
    About controllers
  15. Урок 15. 00:08:54
    About routing
  16. Урок 16. 00:10:40
    Introduction to views (Twig)
  17. Урок 17. 00:07:53
    Twig filters & custom Twig extensions
  18. Урок 18. 00:06:00
    Custom error pages using Twig
  19. Урок 19. 00:05:16
    Global variables in Twig
  20. Урок 20. 00:08:15
    Handling assets (JavaScript, CSS) using Symfony Encore (and Webpack)
  21. Урок 21. 00:08:36
    Installing Bootstrap 4 and compiling assets using Encore (Webpack)
  22. Урок 22. 00:11:52
    Doctrine introduction
  23. Урок 23. 00:07:34
    Creating first Entity
  24. Урок 24. 00:07:58
    Creating a database migration
  25. Урок 25. 00:10:32
    Basics of doctrine repository
  26. Урок 26. 00:06:25
    Creating fixtures (database seeding)
  27. Урок 27. 00:10:46
    Creating a form and handling form submission
  28. Урок 28. 00:10:43
    Repository find methods and Twig include
  29. Урок 29. 00:09:10
    Repository findBy, form validation, handling Entity changes
  30. Урок 30. 00:05:47
    Deleting an Entity and flash messages
  31. Урок 31. 00:06:03
    Doctrine internals (Entity, EntityManager, Unit of Work, Identity Map)
  32. Урок 32. 00:04:43
    Security concepts
  33. Урок 33. 00:09:47
    Security component config and HTTP Basic login
  34. Урок 34. 00:08:51
    Creating User entity
  35. Урок 35. 00:09:44
    User Entity fixtures
  36. Урок 36. 00:09:42
    Login form part 1
  37. Урок 37. 00:10:54
    Login form part 2
  38. Урок 38. 00:06:28
    Adding validation to User entity
  39. Урок 39. 00:08:20
    User registration form
  40. Урок 40. 00:11:49
    User registration controller
  41. Урок 41. 00:13:25
    Assigning user to MicroPost (ManyToOne & OneToMany)
  42. Урок 42. 00:04:39
    Fixtures for relations (using references in fixtures)
  43. Урок 43. 00:11:24
    Verifying user permissions in Twig (is_granted)
  44. Урок 44. 00:05:20
    Adding randomness to fixtures
  45. Урок 45. 00:03:19
    Security Voters introduction
  46. Урок 46. 00:11:11
    Restricting access to edit or delete a micro post using SecurityVoter
  47. Урок 47. 00:11:48
    Securing controller actions and templates using Security Voter
  48. Урок 48. 00:12:07
    Adding an Admin User with all permissions
  49. Урок 49. 00:02:28
    Security role hierarchy
  50. Урок 50. 00:06:07
    Restricting adding new posts to registered users (many ways of doing that)
  51. Урок 51. 00:09:45
    Lazy loading, proxy classes, repository find* methods criteria
  52. Урок 52. 00:04:25
    Doctrine Lifecycle Callbacks
  53. Урок 53. 00:09:03
    ManyToMany self-referencing relation (following/followers)
  54. Урок 54. 00:07:31
    Fetching collections lazily in templates
  55. Урок 55. 00:16:59
    Follow/Unfollow functionality (controller, adding Entities to Collections)
  56. Урок 56. 00:05:41
    Follow/Unfollow functionality (security, verifying uniqueness)
  57. Урок 57. 00:11:54
    Doctrine QueryBuilder - creating queries in OOP manner
  58. Урок 58. 00:09:44
    ArrayCollection vs PersistentCollection vs Collection
  59. Урок 59. 00:12:44
    Creating custom query to fetch users with more than 5 posts
  60. Урок 60. 00:02:48
    More on Doctrine Collections (from the database perspective)
  61. Урок 61. 00:00:54
    Section introduction
  62. Урок 62. 00:07:31
    ManyToMany relationship for liked posts
  63. Урок 63. 00:09:33
    Likes controller
  64. Урок 64. 00:18:55
    Implementing like functionality through XHR requests (including JavaScript)
  65. Урок 65. 00:00:52
    Notifications introduction
  66. Урок 66. 00:10:11
    Doctrine Table Inheritance - base Notification Entity
  67. Урок 67. 00:06:41
    NotificationRepository - fetching notifications unseen by user
  68. Урок 68. 00:09:41
    Unseen notification badge (Twig + JavaScript)
  69. Урок 69. 00:17:45
    Doctrine EventSubscriber - saving a notification as a reaction to other events
  70. Урок 70. 00:11:05
    Unseen notification list
  71. Урок 71. 00:10:12
    Marking notifications as being read (Doctrine Query Builder UPDATE queries)
  72. Урок 72. 00:03:09
    Introduction to EventDispatcher
  73. Урок 73. 00:05:31
    Dispatching an event when user registers
  74. Урок 74. 00:04:14
    EventSubscriber - listening to user register event
  75. Урок 75. 00:09:45
    Sending e-mail after user registers using Swift Mailer
  76. Урок 76. 00:05:08
    E-mail spooling
  77. Урок 77. 00:05:16
    Creating a Mailer class to handle e-mail sending (and generation using Twig)
  78. Урок 78. 00:15:03
    Account confirmation (using secure token, confirmation link on e-mail)
  79. Урок 79. 00:04:36
    Installing and configuring translation component
  80. Урок 80. 00:07:15
    Using trans Twig filter to translate strings and validation messages translation
  81. Урок 81. 00:10:18
    Translation strings with variables (translating confirmation e-mail with links)
  82. Урок 82. 00:05:15
    Translation pluralization (different translation depending on variable)
  83. Урок 83. 00:03:19
    Introduction to sessions
  84. Урок 84. 00:10:01
    Storing user sessions in database
  85. Урок 85. 00:09:55
    LocaleSubscriber - keeping user locale (language) in session
  86. Урок 86. 00:09:13
    UserPreferences Entity & OneToOne relation with User Entity
  87. Урок 87. 00:06:33
    Creating new UserPreferences after user registration (responding to event)
  88. Урок 88. 00:06:18
    UserLocaleSubscriber - loading user language from DB and keeping in session
  89. Урок 89. 00:01:54
    Introduction to unit testing (using PHPUnit)
  90. Урок 90. 00:08:08
    Writing first unit test
  91. Урок 91. 00:06:16
    Creating PHPUnit Mocks
  92. Урок 92. 00:09:56
    A more complicated case with testing
  93. Урок 93. 00:05:43
    Creating a GitHub account and adding an SSH key
  94. Урок 94. 00:01:43
    Creating a DigitalOcean droplet
  95. Урок 95. 00:01:34
    First login to virtual server and changing the root password
  96. Урок 96. 00:04:44
    Creating and adding an SSH key to DigitalOcean (and managing SSH keys)
  97. Урок 97. 00:04:43
    Installing Apache2 on virtual server
  98. Урок 98. 00:02:19
    Installing PHP 7.2 on virtual server
  99. Урок 99. 00:02:57
    Installing MySQL on virtual server and creating a database
  100. Урок 100. 00:08:16
    Configuring Apache Virtual Host and using fake SMTP testing server
  101. Урок 101. 00:06:08
    Moving application code to production server using Git & dependencies
  102. Урок 102. 00:07:34
    Running migrations on server and folder permissions
  103. Урок 103. 00:03:02
    Introduction to Continuous Integration & Continuous Deployment
  104. Урок 104. 00:10:18
    Setting up CircleCI (automation server)
  105. Урок 105. 00:03:58
    Running our first automation job (running tests)
  106. Урок 106. 00:01:13
    Adding deployment SSH key to CricleCI
  107. Урок 107. 00:12:28
    Deployment job and deployment scripts
  108. Урок 108. 00:05:19
    Running the deployment job