├── roadmap.json ├── LICENSE └── README.md /roadmap.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": [ 3 | { 4 | "name":"Ceelog", 5 | "homepage":"https://github.com/ceelog" 6 | } 7 | ], 8 | "dependencies": { 9 | "roadmapedu/cet-4": "latest" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 roadmapedu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # roadmap-for-php-developer 2 | 3 | - PHP IDE/Editor 4 | 5 | - [PHP Storm](https://www.jetbrains.com/phpstorm/) 6 | - [VS Code](https://code.visualstudio.com/) 7 | - [Sublime Text](https://www.sublimetext.com/) 8 | 9 | - [Git](https://git-scm.com/) 10 | - [Github](https://github.com/) 11 | - [Gitlab](https://about.gitlab.com/) 12 | - [Bitbucket](https://bitbucket.org/product/) 13 | 14 | - [Web Development (HTML/CSS/JS)](https://developer.mozilla.org/zh-CN/docs/Web) 15 | 16 | - [PHP Manual](https://www.php.net/manual/zh/) 17 | - [PHP language reference](https://www.php.net/manual/zh/langref.php) 18 | - [PHP Built-in Web Server](https://www.php.net/manual/en/features.commandline.webserver.php) 19 | 20 | - [PHP The Right Way](https://phptherightway.com/) 21 | 22 | - [PHP MVC](https://www.yiiframework.com/doc/guide/1.1/en/basics.mvc) 23 | 24 | - PHP Framework 25 | 26 | - [Laravel](https://laravel.com/) 27 | - [CodeIgniter](https://www.codeigniter.com/) 28 | - [Symfony](https://symfony.com/) 29 | - [CakePHP](https://cakephp.org/) 30 | - [Yii](https://www.yiiframework.com/) 31 | - [ThinkPHP](http://www.thinkphp.cn/) 32 | - [Yaf](https://www.php.net/manual/zh/book.yaf.php) 33 | 34 | - [PHP XDebug](https://xdebug.org/) 35 | 36 | - [PHPUnit](https://phpunit.de/) 37 | 38 | - [PHP Composer](https://getcomposer.org/) 39 | 40 | - [PHP FIG](https://www.php-fig.org/) 41 | 42 | - [PHP Design Patterns](https://designpatternsphp.readthedocs.io/en/latest/README.html) 43 | 44 | - [HTTP](https://developer.mozilla.org/zh-CN/docs/Web/HTTP) 45 | 46 | - Linux 47 | - [Basic Usage](https://www.tutorialspoint.com/unix/index.htm) 48 | - SSH Client 49 | - [XShell](https://www.netsarang.com/en/xshell/) 50 | - [MobaXterm](https://mobaxterm.mobatek.net/) 51 | - [PuTTY](https://www.putty.org/) 52 | - [Shell Programming](https://www.tutorialspoint.com/unix/shell_scripting.htm) 53 | 54 | 55 | - Web Server 56 | 57 | - [Nginx](https://nginx.org/en/) 58 | - [Apache httpd](https://httpd.apache.org/) 59 | 60 | - Database 61 | 62 | - [MySQL](https://dev.mysql.com/doc/refman/8.0/en/) 63 | - [phpMyAdmin](https://www.phpmyadmin.net/) 64 | - [PostgreSQL](https://www.postgresql.org/) 65 | - [MongoDB](https://docs.mongodb.com/) 66 | - [SQLite](https://www.sqlite.org/index.html) 67 | 68 | - Cache 69 | 70 | - [Redis](https://redis.io/) 71 | - [Memcached](https://memcached.org/) 72 | 73 | - Message Queue 74 | 75 | - [Kafka](https://kafka.apache.org/) 76 | - [Beanstalkd](https://beanstalkd.github.io/) 77 | - [RabbitMQ](https://www.rabbitmq.com/) 78 | 79 | - Search Engine 80 | - [Solr](https://lucene.apache.org/solr/) 81 | - [ElasticSearch](https://www.elastic.co/guide/index.html) 82 | 83 | - Big Data 84 | - [Hadoop](https://hadoop.apache.org/) 85 | - [Hadoop Streaming](https://hadoop.apache.org/docs/r1.2.1/streaming.html) 86 | - [Hive](https://hive.apache.org/) 87 | 88 | - Micro Service 89 | 90 | - [Apache Thrift](https://thrift.apache.org/) 91 | - [gRPC](https://grpc.io/) 92 | - [Docker](https://www.docker.com/) 93 | - [K8s](https://kubernetes.io/) 94 | 95 | - Monitor 96 | 97 | - [Prometheus](https://prometheus.io/) 98 | - [Open Falcon](https://open-falcon.org/) 99 | 100 | - PHP Internal 101 | - [php7-internal](https://github.com/pangudashu/php7-internal) 102 | - [Thinking in PHP internals](http://www.php-internals.com/) 103 | - [PHP internals book](http://www.phpinternalsbook.com/) 104 | --------------------------------------------------------------------------------