1. Урок 1. 00:06:46
    Introduction
  2. Урок 2. 00:09:29
    Course outline and how to make most of this course! (PLEASE WATCH!)
  3. Урок 3. 00:08:36
    Tools (required/optional) overview
  4. Урок 4. 00:05:50
    Installing PHP and Composer on Windows
  5. Урок 5. 00:01:52
    Installing PHP and Composer on Mac
  6. Урок 6. 00:01:19
    Installing Visual Studio Code
  7. Урок 7. 00:04:43
    Namespaces
  8. Урок 8. 00:05:47
    Class Fields and Methods
  9. Урок 9. 00:05:14
    Method & Field Visibility
  10. Урок 10. 00:10:42
    Inheritance
  11. Урок 11. 00:03:40
    Abstract Classes
  12. Урок 12. 00:11:16
    Interfaces
  13. Урок 13. 00:12:29
    Typed Arguments & Function Return Types
  14. Урок 14. 00:04:49
    Anonymous Functions (Closures)
  15. Урок 15. 00:05:05
    Reflection API (Reverse-Engineer Classes, Methods, Functions)
  16. Урок 16. 00:05:47
    Dependency Injection (In Practice)
  17. Урок 17. 00:12:30
    Simple Service Container (Hands-On Coding!)
  18. Урок 18. 00:10:52
    Service Autowiring Implementation Part 1
  19. Урок 19. 00:11:25
    Service Autowiring Implementation Part 2
  20. Урок 20. 00:08:05
    Annotations and Kernel Part 1
  21. Урок 21. 00:12:41
    Annotations and Kernel Part 2
  22. Урок 22. 00:01:25
    Creating new Symfony project
  23. Урок 23. 00:02:47
    Routing annotations in controllers
  24. Урок 24. 00:05:33
    Routing - route parameter wildcards
  25. Урок 25. 00:02:24
    Routing - default parameter values
  26. Урок 26. 00:01:58
    Routing - generating urls using route names
  27. Урок 27. 00:04:39
    AbstractController, Request, Response
  28. Урок 28. 00:02:10
    Installing ORM, maker, configuring database
  29. Урок 29. 00:03:17
    Generating first Entity
  30. Урок 30. 00:02:31
    Entity explained
  31. Урок 31. 00:02:59
    Migration - modifying database structure
  32. Урок 32. 00:05:15
    Persisting entities and serializing data
  33. Урок 33. 00:03:22
    Fetching objects using repositories
  34. Урок 34. 00:06:00
    ParamConverter - type hinting actions for automatic fetching of entities
  35. Урок 35. 00:03:40
    Deleting entities
  36. Урок 36. 00:04:52
    Doctrine Fixtures - seeding fake data
  37. Урок 37. 00:03:15
    Admin panel introduction - EasyAdmin
  38. Урок 38. 00:06:20
    Install API Platform and create the first resource
  39. Урок 39. 00:02:19
    Generate User and Comment entity
  40. Урок 40. 00:09:13
    ManyToOne relation and migration
  41. Урок 41. 00:05:34
    Fixtures with references (for relations)
  42. Урок 42. 00:04:02
    Password encoding in fixtures
  43. Урок 43. 00:07:56
    Generate fake data in fixtures using Faker
  44. Урок 44. 00:04:45
    BlogPost with Comment relation and fixtures
  45. Урок 45. 00:05:42
    Built-in API Platform operations
  46. Урок 46. 00:03:13
    Disabling operations
  47. Урок 47. 00:04:34
    Introduction to serialization/deserialization
  48. Урок 48. 00:02:16
    Serialization groups (controlling which properties are serialized)
  49. Урок 49. 00:06:51
    EventSubscriber (hashing password)
  50. Урок 50. 00:04:44
    Validator and validation constraints
  51. Урок 51. 00:04:30
    Validation using regular expressions
  52. Урок 52. 00:02:58
    Virtual property (not persisted to database)
  53. Урок 53. 00:02:03
    Validating uniqueness of fields (username, email)
  54. Урок 54. 00:05:26
    JWT Tokens introduction
  55. Урок 55. 00:03:25
    Preparing JWT token library and keys
  56. Урок 56. 00:04:25
    Configuring UserProvider
  57. Урок 57. 00:08:39
    Firewall configuration
  58. Урок 58. 00:06:11
    JSON login configuration and Guard Authentication explained
  59. Урок 59. 00:05:43
    Authentication final configuration and first login using JWT token
  60. Урок 60. 00:02:56
    Using is_granted() to control access to operations
  61. Урок 61. 00:06:17
    BlogPost validation on POST
  62. Урок 62. 00:08:16
    Setting author of BlogPost automatically (EventSubscriber)
  63. Урок 63. 00:06:08
    Making sure only owner of BlogPost can modify it (PUT)
  64. Урок 64. 00:06:45
    Controlling which properties can be changed (no username change)
  65. Урок 65. 00:07:08
    Hasing password on User changes (PUT) - with Events
  66. Урок 66. 00:05:09
    Comment resource operations (POST/PUT)
  67. Урок 67. 00:07:23
    More randomness in fixtures
  68. Урок 68. 00:05:59
    Setting author automatically (EventSubscriber) - using generic Interface
  69. Урок 69. 00:07:11
    Setting published date automatically (EventSubscriber)
  70. Урок 70. 00:05:20
    API subresources
  71. Урок 71. 00:07:44
    Controlling how deep relations are serialized
  72. Урок 72. 00:04:10
    Embedding Author resource inside BlogPost
  73. Урок 73. 00:05:48
    Adding user role field with migration
  74. Урок 74. 00:09:27
    User role fixtures
  75. Урок 75. 00:01:41
    Defining role hierarchy
  76. Урок 76. 00:09:44
    Verifying only users with specific role can POST resources
  77. Урок 77. 00:09:21
    Different User view for admins (different serialization of all User entities)
  78. Урок 78. 00:03:03
    Verifying only admin can see all User's email
  79. Урок 79. 00:11:17
    User can view his full profile (including email and roles) - custom Normalizer
  80. Урок 80. 00:01:26
    Verifying only the profile owner can see all properties
  81. Урок 81. 00:05:53
    Disabling password hashing for PUT operation
  82. Урок 82. 00:02:21
    Configuring custom operation for password reset in User
  83. Урок 83. 00:10:32
    Creating custom Action class
  84. Урок 84. 00:08:36
    Implementing custom PasswordReset action
  85. Урок 85. 00:11:18
    Invalidating JWT tokens after password reset
  86. Урок 86. 00:05:17
    User enabled property migration and fixtures
  87. Урок 87. 00:03:51
    Implementing UserChecker to verify if account is enabled
  88. Урок 88. 00:05:43
    Secure confirmation token generation
  89. Урок 89. 00:04:35
    Generating confirmation token when user signs-up
  90. Урок 90. 00:03:36
    UserConfirmation custom API Resource
  91. Урок 91. 00:06:39
    UserConfirmation EventSubscriber
  92. Урок 92. 00:02:49
    Verifying Confirmation Token endpoint
  93. Урок 93. 00:03:50
    Install and configure Swift Mailer
  94. Урок 94. 00:02:18
    Sending a test e-mail through Gmail
  95. Урок 95. 00:08:26
    Refactoring UserConfirmation and Mailer into services
  96. Урок 96. 00:04:57
    Traditional (non API) account confirmation route (for e-mail)
  97. Урок 97. 00:02:06
    Verifying confirmation link received in e-mail
  98. Урок 98. 00:04:04
    Install and configure uploading library
  99. Урок 99. 00:05:13
    Image entity with migration and @Uploadable annotation
  100. Урок 100. 00:02:49
    API Resource for Image entity
  101. Урок 101. 00:05:51
    Implementing custom Action for upload
  102. Урок 102. 00:05:38
    Creating Form for file upload
  103. Урок 103. 00:04:00
    Assigning Image to BlogPost (ManyToMany relation)
  104. Урок 104. 00:04:22
    Verifying assigning Image to BlogPost, embedding Image inside BlogPost
  105. Урок 105. 00:03:34
    Configuring default collection sorting order
  106. Урок 106. 00:06:40
    Search filter
  107. Урок 107. 00:04:32
    Date filter
  108. Урок 108. 00:02:06
    Range filter
  109. Урок 109. 00:04:26
    Sorting filter
  110. Урок 110. 00:02:04
    Filtering by nested properties
  111. Урок 111. 00:03:00
    Property filter
  112. Урок 112. 00:06:07
    Configuring collection pagination
  113. Урок 113. 00:04:36
    Configuring collection pagination part 2
  114. Урок 114. 00:01:46
    Partial pagination (performance gain)
  115. Урок 115. 00:02:58
    Empty request body for POST/PUT requests problem
  116. Урок 116. 00:06:25
    Handling empty request body
  117. Урок 117. 00:01:57
    Fixing validation groups
  118. Урок 118. 00:03:51
    Handling business logic exceptions
  119. Урок 119. 00:07:56
    Installing Monolog library for application logging
  120. Урок 120. 00:04:32
    Defining custom logging channel
  121. Урок 121. 00:02:42
    Logging to separate files per channel
  122. Урок 122. 00:03:39
    Production configuration for logger explained
  123. Урок 123. 00:07:02
    EasyAdmin basic built-in features
  124. Урок 124. 00:04:18
    Fixing empty body subscriber for form submittal
  125. Урок 125. 00:08:21
    Custom Resource controller, customizing saving and updating an Entity
  126. Урок 126. 00:03:58
    Image upload in admin panel
  127. Урок 127. 00:05:27
    Custom page for individual BlogPost
  128. Урок 128. 00:06:07
    Securing Admin panel area
  129. Урок 129. 00:07:06
    Installing PHPUnit and writing first basic unit test
  130. Урок 130. 00:04:27
    Testing EventSubscriber static configuration
  131. Урок 131. 00:05:32
    Mocks (stubs) Part 1 - Mocking dependencies, Entities
  132. Урок 132. 00:05:10
    Mocks (stubs) Part 2 - Mocking dependencies, Entites
  133. Урок 133. 00:03:29
    Event class Mock, extracting repeated mock factory code
  134. Урок 134. 00:04:50
    Parameters for mocks
  135. Урок 135. 00:06:38
    Full test for AuthoredEntitySubscriber
  136. Урок 136. 00:04:43
    Data providers in tests (using many data sets in 1 test case)
  137. Урок 137. 00:05:46
    Finding potential errors using unit tests (null Token example)
  138. Урок 138. 00:03:00
    Installing Behat & all extensions, first suite run
  139. Урок 139. 00:04:52
    Configuring Behat
  140. Урок 140. 00:08:26
    FeatureContext - creating database schema for each feature
  141. Урок 141. 00:05:50
    First blog post test scenario
  142. Урок 142. 00:07:05
    Testing protected URLs
  143. Урок 143. 00:06:32
    Validating returned JSON using patterns (not matching exact values)
  144. Урок 144. 00:03:11
    Looking for errors and issues using functional tests
  145. Урок 145. 00:06:28
    Finding a comment problem
  146. Урок 146. 00:13:06
    Custom error listener
  147. Урок 147. 00:06:21
    Image upload feature
  148. Урок 148. 00:02:41
    Working image upload functional test
  149. Урок 149. 00:04:50
    Testing assigning Images to BlogPost, full suite run
  150. Урок 150. 00:01:19
    Installing node & npm on Windows
  151. Урок 151. 00:01:01
    Installing node & npm on MacOS
  152. Урок 152. 00:03:06
    Installing dependencies and creating main index.js
  153. Урок 153. 00:05:45
    Creating store, using Provider, Router and components
  154. Урок 154. 00:02:41
    BlogPostList empty component, App as a container component
  155. Урок 155. 00:06:19
    BlogPostContainer, using key for list of elements
  156. Урок 156. 00:07:02
    Redux: actions, reducer, mapping state and dispatch to props 1
  157. Урок 157. 00:04:36
    Redux: actions, reducer, mapping state and dispatch to props 2
  158. Урок 158. 00:04:29
    Adding BlogPost (dummy action), Reducer explained
  159. Урок 159. 00:05:00
    Making API requests with Superagent
  160. Урок 160. 00:09:19
    Thunk Redux Middleware
  161. Урок 161. 00:03:31
    Header component (navigation)
  162. Урок 162. 00:03:42
    Loading indicator when making API requests
  163. Урок 163. 00:03:32
    Formatting BlogPost list, formatting time (timeago.js)
  164. Урок 164. 00:04:07
    Route with parameter - individual BlogPost
  165. Урок 165. 00:06:28
    Fetching BlogPost from API
  166. Урок 166. 00:04:42
    ComponentWillUnmount lifecycle method
  167. Урок 167. 00:02:44
    BlogPost component - API changes
  168. Урок 168. 00:05:36
    Spinner and Message components (loading state, simple message)
  169. Урок 169. 00:10:31
    CommentListContainer component
  170. Урок 170. 00:03:45
    CommentList reducer
  171. Урок 171. 00:02:59
    Rendering comments
  172. Урок 172. 00:02:24
    Introducing redux-form
  173. Урок 173. 00:06:28
    Render redux form component
  174. Урок 174. 00:02:10
    Adding redux-form reducer
  175. Урок 175. 00:03:57
    Submitting Form to an API endpoint
  176. Урок 176. 00:03:15
    Storing JWT token in LocalStorage, Token Middleware
  177. Урок 177. 00:07:11
    Token Middleware and JWT authentication plugin 1
  178. Урок 178. 00:06:06
    Token Middleware and JWT authentication plugin 2
  179. Урок 179. 00:06:30
    Reading token in App component constructor
  180. Урок 180. 00:03:14
    Redux Form submission, handling login errors
  181. Урок 181. 00:03:22
    Checking whether user is authenticated (in Header component)
  182. Урок 182. 00:06:20
    Fetching user profile through API
  183. Урок 183. 00:07:43
    Rendering signed-in username in Header
  184. Урок 184. 00:05:36
    Fetching user profile on page refresh
  185. Урок 185. 00:04:41
    Create a redux-form for Comment posting
  186. Урок 186. 00:02:27
    Redux-form submitting state simulation
  187. Урок 187. 00:04:21
    Fully working CommentForm
  188. Урок 188. 00:03:43
    Displaying errors in redux-form
  189. Урок 189. 00:04:12
    Parsing API errors (validation constraint messages from API)
  190. Урок 190. 00:05:47
    Animations - animated comment adding
  191. Урок 191. 00:06:20
    Logout functionality (resetting stored JWT token)
  192. Урок 192. 00:05:57
    Logging out user when token expires
  193. Урок 193. 00:03:03
    Logging out user when he submits an expired token (401)
  194. Урок 194. 00:03:47
    Paginator component
  195. Урок 195. 00:02:47
    Paginator component - showing current page
  196. Урок 196. 00:07:10
    Fetching blog post collection on page change
  197. Урок 197. 00:04:34
    Query parameter based pagination (page in route parameter)
  198. Урок 198. 00:09:27
    Pagination - previous/next buttons
  199. Урок 199. 00:01:48
    Modify API - missing User embedded data on new Comment
  200. Урок 200. 00:08:47
    LoadMore component - fetching next comments (different way of pagination)
  201. Урок 201. 00:02:49
    Append new comments inside reducer
  202. Урок 202. 00:05:32
    Registration form
  203. Урок 203. 00:10:22
    Registration action creators and form validation
  204. Урок 204. 00:03:15
    ConfirmationToken - modify e-mail to contain token, not only link
  205. Урок 205. 00:03:52
    RegistrationContainer - 2 step registration process
  206. Урок 206. 00:05:21
    Showing ConfirmationToken form on successful account creation
  207. Урок 207. 00:05:17
    Keeping state of registration/confirmation process
  208. Урок 208. 00:08:17
    Registration/Confirmation process, with redirect timer
  209. Урок 209. 00:05:20
    BlogPost form for creating posts and user permissions
  210. Урок 210. 00:05:14
    Functional BlogPost form
  211. Урок 211. 00:06:32
    ImageUpload component (styling the file input)
  212. Урок 212. 00:09:50
    Uploading images - upload request
  213. Урок 213. 00:05:05
    ImageBrowser (preview uploaded images)
  214. Урок 214. 00:04:06
    A new reducer for BlogPostForm
  215. Урок 215. 00:07:17
    Clear the images when BlogPostForm unmounts
  216. Урок 216. 00:04:11
    DELETE operation on Image (API Changes)
  217. Урок 217. 00:03:38
    ImageBrowser animations
  218. Урок 218. 00:03:58
    Remove button on ImageBrowser
  219. Урок 219. 00:03:16
    Remove button on ImageBrowser sending DELETE request
  220. Урок 220. 00:04:47
    Locking all buttons during Image upload/removal