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