Advertisement
Guest User

start with php !

a guest
Oct 22nd, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ```php
  2. <?= 'that php guy says hey !';
  3. ```
  4.  
  5. ## Read :
  6. - https://www.phptherightway.com/
  7. - https://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software
  8. - https://phpbestpractices.org/
  9. - https://www.airpair.com/php/posts/best-practices-for-modern-php-development
  10. - http://phpcheatsheets.com/
  11.  
  12. ## Weekly Mailing list :
  13. - http://www.phpweekly.com/
  14.  
  15. ## Youtube Tutorials :
  16. - https://www.youtube.com/user/phpacademy
  17. - https://www.youtube.com/user/thenewboston
  18. - https://www.youtube.com/user/businessgeek
  19. - https://www.youtube.com/user/LevelUpTuts
  20.  
  21. ## Paid Videos :
  22. - https://teamtreehouse.com/library/php-standards-and-best-practices
  23. - https://www.pluralsight.com/search?q=php
  24. - https://www.lynda.com/search?q=php
  25. - https://code.tutsplus.com/categories/php/courses
  26. - https://laracasts.com/
  27. - https://symfonycasts.com/
  28.  
  29. ## PHP Standers :
  30. - https://www.php-fig.org/psr/psr-1 ( Basic Coding Standard )
  31. - https://www.php-fig.org/psr/psr-2 ( Coding Style Guide )
  32. - https://www.php-fig.org/psr/psr-3 ( Logger Interface )
  33. - https://www.php-fig.org/psr/psr-4 ( Autoloading Standard )
  34. - https://www.php-fig.org/psr/psr-6 ( Caching Interface )
  35. - https://www.php-fig.org/psr/psr-7 ( HTTP Message Interface )
  36. - https://www.php-fig.org/psr/psr-11 ( Container Interface )
  37. - https://www.php-fig.org/psr/psr-13 ( Hypermedia Links )
  38. - https://www.php-fig.org/psr/psr-15 ( HTTP Handlers )
  39. - https://www.php-fig.org/psr/psr-16 ( Simple Cache )
  40. - https://www.php-fig.org/psr/psr-17 ( HTTP Factories )
  41.  
  42. ---
  43.  
  44. ### Tools :
  45. - PHPBrew : http://phpbrew.github.io/phpbrew
  46. - PHPStan : https://phpstan.org/
  47. - PHP-CS-FIXER : https://cs.sensiolabs.org/
  48. - Parallel Lint : https://github.com/JakubOnderka/PHP-Parallel-Lint
  49.  
  50. ### Dependency Manager :
  51. - Composer : https://getcomposer.org
  52.  
  53. ### Frameworks :
  54. - Symfony : https://github.com/symfony/symfony
  55. - Zend : https://github.com/zendframework/zendframework
  56. - Zend Expressive : https://github.com/zendframework/zend-expressive
  57. - Laravel : https://github.com/laravel/laravel
  58. - EasySwoole : https://github.com/easy-swoole/easyswoole/
  59.  
  60. ### Dependecy Injection :
  61. - The League Container : https://github.com/thephpleague/container
  62. - Illuminate Container : https://github.com/illuminate/container
  63. - Symfony DI : https://github.com/symfony/dependency-injection
  64. - Zend Service Manager : https://github.com/zendframework/zend-servicemanager
  65.  
  66. ### HTTP :
  67. - Symfony Http Foundation : https://github.com/symfony/http-foundation
  68. - Symfony Kernel : https://github.com/symfony/http-kernel
  69. - Zend Diactoros : https://github.com/zendframework/zend-diactoros
  70. - Zend Http : https://github.com/zendframework/zend-http
  71.  
  72. ### Routing :
  73. - Symfony Routing : https://github.com/symfony/routing
  74. - Zend Routing : https://github.com/zendframework/zend-router
  75.  
  76. ### Validation :
  77. - Symfony Validator : https://github.com/symfony/validator
  78. - Zend Validator : https://github.com/zendframework/zend-validator
  79.  
  80. ### Form :
  81. - Zend Form : https://github.com/zendframework/zend-form
  82. - Symfony Form : https://github.com/symfony/form
  83.  
  84. ### Database :
  85. - Doctrine ORM : https://github.com/doctrine/doctrine2
  86. - Doctrine DBAL ( Database Abstract Layer ) : https://github.com/doctrine/dbal
  87. - Illuminate Database : https://github.com/illuminate/database
  88. - Zend Database : https://github.com/zendframework/zend-db
  89. - ReadBeanPHP : https://github.com/gabordemooij/redbean
  90. - EasyDB : https://github.com/paragonie/easydb
  91.  
  92. ### Mail :
  93. - SwiftMailer : https://github.com/swiftmailer/swiftmailer
  94. - ZendMail : https://github.com/zendframework/zend-mail
  95.  
  96. ### Template Engines :
  97. - Twig : https://github.com/twigphp/Twig
  98. - Symfony Templates : https://github.com/symfony/templating
  99. - Zend View : https://github.com/zendframework/zend-view
  100. - Plates : https://github.com/thephpleague/plates
  101.  
  102. ### Command Line :
  103. - Symfony Console : https://github.com/symfony/console
  104. - Silly : https://github.com/mnapoli/silly
  105. - Zend Console : https://github.com/zendframework/zend-console
  106.  
  107. ### IDE :
  108. - PhpStorm : https://www.jetbrains.com/phpstorm/
  109. - Sublime Text : https://www.sublimetext.com/
  110.  
  111. ### Testing :
  112. - PhpUnit : https://phpunit.de/
  113. - Codeception : https://codeception.com/
  114. - Behat : http://docs.behat.org/en/v2.5/
  115. - PhpSpec : http://www.phpspec.net/en/latest/
  116.  
  117. ### Other :
  118. - ReactPHP : https://github.com/reactphp
  119. - PHP Swoole : https://github.com/swoole/swoole-src/
  120. - KrakenPHP : https://github.com/kraken-php/framework
  121. - The Symfony Components : https://symfony.com/components
  122. - The PHP League Components : http://thephpleague.com/
  123. - PHP Cache : https://www.php-cache.com/en/latest/
  124. - Monolog : https://github.com/Seldaek/monolog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement