Skip to content

Commit 6867783

Browse files
committed
Replace unicode 7.0 emoji with 6.0
1 parent 66b4c58 commit 6867783

File tree

7 files changed

+270
-270
lines changed

7 files changed

+270
-270
lines changed

README.md

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -143,98 +143,98 @@ you end up with a large monolithic repository consisting of C source code files,
143143
PHP tests and other associated files:
144144

145145
```sh
146-
🗁 <php-src>
147-
├─🗁 .git # Git configuration and source directory
148-
├─🗁 benchmark # Benchmark some common applications in CI
149-
├─🗁 build # *nix build system files
150-
├─🗁 docs # PHP internals documentation
151-
└─🗁 ext # PHP core extensions
152-
└─🗁 bcmath # The bcmath PHP extension
153-
├─🗁 libbcmath # The bcmath library forked and maintained in php-src
154-
├─🗁 tests # *.phpt test files for extension
146+
📂 <php-src>
147+
├─📂 .git # Git configuration and source directory
148+
├─📂 benchmark # Benchmark some common applications in CI
149+
├─📂 build # *nix build system files
150+
├─📂 docs # PHP internals documentation
151+
└─📂 ext # PHP core extensions
152+
└─📂 bcmath # The bcmath PHP extension
153+
├─📂 libbcmath # The bcmath library forked and maintained in php-src
154+
├─📂 tests # *.phpt test files for extension
155155
├─📄 bcmath.stub.php # A stub file for the bcmath extension functions
156156
└─📄 ...
157-
└─🗁 curl # The curl PHP extension
157+
└─📂 curl # The curl PHP extension
158158
├─📄 sync-constants.php # The curl symbols checker
159159
└─📄 ...
160-
└─🗁 date # The date/time PHP extension
161-
└─🗁 lib # Bundled datetime library https://github.com/derickr/timelib
160+
└─📂 date # The date/time PHP extension
161+
└─📂 lib # Bundled datetime library https://github.com/derickr/timelib
162162
└─📄 ...
163163
└─📄 ...
164-
├─🗁 dl_test # Extension for testing dl()
165-
└─🗁 dom
166-
├─🗁 lexbor # https://github.com/lexbor/lexbor
164+
├─📂 dl_test # Extension for testing dl()
165+
└─📂 dom
166+
├─📂 lexbor # https://github.com/lexbor/lexbor
167167
└─📄 ...
168-
└─🗁 ffi # The FFI PHP extension
168+
└─📂 ffi # The FFI PHP extension
169169
├─📄 ffi_parser.c # Generated by https://github.com/dstogov/llk
170170
└─📄 ...
171-
└─🗁 fileinfo # The fileinfo PHP extension
172-
├─🗁 libmagic # Modified libmagic https://github.com/file/file
171+
└─📂 fileinfo # The fileinfo PHP extension
172+
├─📂 libmagic # Modified libmagic https://github.com/file/file
173173
├─📄 data_file.c # Generated by `ext/fileinfo/create_data_file.php`
174174
├─📄 libmagic.patch # Modifications patch from upstream libmagic
175175
├─📄 magicdata.patch # Modifications patch from upstream libmagic
176176
└─📄 ...
177-
└─🗁 gd # The GD PHP extension
178-
├─🗁 libgd # Bundled and modified GD library https://github.com/libgd/libgd
177+
└─📂 gd # The GD PHP extension
178+
├─📂 libgd # Bundled and modified GD library https://github.com/libgd/libgd
179179
└─📄 ...
180-
└─🗁 mbstring # The Multibyte string PHP extension
181-
├─🗁 libmbfl # Forked and maintained in php-src
180+
└─📂 mbstring # The Multibyte string PHP extension
181+
├─📂 libmbfl # Forked and maintained in php-src
182182
├─📄 unicode_data.h # Generated by `ext/mbstring/ucgendat/ucgendat.php`
183183
└─📄 ...
184-
└─🗁 opcache # The OPcache PHP extension
185-
└─🗁 jit # OPcache Jit
186-
└─🗁 ir # Bundled part of IR framework https://github.com/dstogov/ir
187-
└─🗁 dynasm # DynASM encoding engine
184+
└─📂 opcache # The OPcache PHP extension
185+
└─📂 jit # OPcache Jit
186+
└─📂 ir # Bundled part of IR framework https://github.com/dstogov/ir
187+
└─📂 dynasm # DynASM encoding engine
188188
├─📄 minilua.c # Customized Lua scripting language to build LuaJIT
189189
└─📄 ...
190190
├─📄 gen_ir_fold_hash # IR folding engine generator created at build
191191
├─📄 ir_emit_<arch>.h # IR folding engine rules generated by minilua
192192
├─📄 minilua # Executable tool created at build
193193
└─📄 ...
194-
└─🗁 pcre # The PCRE PHP extension
195-
├─🗁 pcre2lib # https://www.pcre.org/
194+
└─📂 pcre # The PCRE PHP extension
195+
├─📂 pcre2lib # https://www.pcre.org/
196196
└─📄 ...
197-
├─🗁 skeleton # Skeleton for new extensions using `ext/ext_skel.php`
198-
└─🗁 standard # Always enabled core extension
199-
└─🗁 html_tables
200-
├─🗁 mappings # https://www.unicode.org/Public/MAPPINGS/
197+
├─📂 skeleton # Skeleton for new extensions using `ext/ext_skel.php`
198+
└─📂 standard # Always enabled core extension
199+
└─📂 html_tables
200+
├─📂 mappings # https://www.unicode.org/Public/MAPPINGS/
201201
└─📄 ...
202202
├─📄 credits_ext.h # Generated by `scripts/dev/credits`
203203
├─📄 credits_sapi.h # Generated by `scripts/dev/credits`
204204
├─📄 html_tables.h # Generated by `ext/standard/html_tables/html_table_gen.php`
205205
└─📄 ...
206-
└─🗁 tokenizer # The tokenizer PHP extension
206+
└─📂 tokenizer # The tokenizer PHP extension
207207
├─📄 tokenizer_data.c # Generated by `ext/tokenizer/tokenizer_data_gen.php`
208208
├─📄 tokenizer_data_stub.php # Generated by `ext/tokenizer/tokenizer_data_gen.php`
209209
└─📄 ...
210-
└─🗁 zend_test # For testing internal APIs. Not needed for regular builds
210+
└─📂 zend_test # For testing internal APIs. Not needed for regular builds
211211
└─📄 ...
212-
└─🗁 zip/ # Bundled https://github.com/pierrejoye/php_zip
212+
└─📂 zip/ # Bundled https://github.com/pierrejoye/php_zip
213213
└─📄 ...
214-
├─🗁 ...
214+
├─📂 ...
215215
└─📄 ext_skel.php # Helper script that creates a new PHP extension
216-
└─🗁 main # Binding that ties extensions, SAPIs, Zend engine and TSRM together
217-
├─🗁 streams # Streams layer subsystem
216+
└─📂 main # Binding that ties extensions, SAPIs, Zend engine and TSRM together
217+
├─📂 streams # Streams layer subsystem
218218
└─📄 ...
219-
├─🗁 modules # Shared libraries, created when building PHP
220-
├─🗁 pear # PEAR installation
221-
└─🗁 sapi # PHP SAPI (Server API) modules
222-
└─🗁 cli # Command-line PHP SAPI module
219+
├─📂 modules # Shared libraries, created when building PHP
220+
├─📂 pear # PEAR installation
221+
└─📂 sapi # PHP SAPI (Server API) modules
222+
└─📂 cli # Command-line PHP SAPI module
223223
├─📄 mime_type_map.h # Generated by `sapi/cli/generate_mime_type_map.php`
224224
└─📄 ...
225225
└─📄 ...
226-
├─🗁 scripts # php-config, phpize and internal development scripts
227-
├─🗁 tests # Core features tests
228-
├─🗁 TSRM # Thread safe resource manager
229-
└─🗁 Zend # Zend engine
230-
├─🗁 asm # Bundled from src/asm in https://github.com/boostorg/context
231-
├─🗁 Optimizer # For faster PHP execution through opcode caching and optimization
232-
├─🗁 tests # PHP tests *.phpt files for Zend engine
226+
├─📂 scripts # php-config, phpize and internal development scripts
227+
├─📂 tests # Core features tests
228+
├─📂 TSRM # Thread safe resource manager
229+
└─📂 Zend # Zend engine
230+
├─📂 asm # Bundled from src/asm in https://github.com/boostorg/context
231+
├─📂 Optimizer # For faster PHP execution through opcode caching and optimization
232+
├─📂 tests # PHP tests *.phpt files for Zend engine
233233
├─📄 zend_vm_execute.h # Generated by `Zend/zend_vm_gen.php`
234234
├─📄 zend_vm_opcodes.c # Generated by `Zend/zend_vm_gen.php`
235235
├─📄 zend_vm_opcodes.h # Generated by `Zend/zend_vm_gen.php`
236236
└─📄 ...
237-
├─🗁 win32 # Windows build files
237+
├─📂 win32 # Windows build files
238238
└─📄 ...
239239
```
240240

docs/CONTRIBUTING.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,20 @@ The following labels are used:
4646
This is a monolithic repository consisting of the following files:
4747

4848
```sh
49-
🗁 <php-build-system>
50-
└─🗁 .github # GitHub directory
51-
└─🗁 workflows # Workflows for GitHub actions
52-
└─🗁 ...
53-
└─🗁 bin # Helper development scripts, not part of the build system
54-
└─🗁 ...
55-
└─🗁 cmake # CMake-based PHP build system
56-
└─🗁 ...
57-
└─🗁 docs # Repository documentation
58-
└─🗁 ...
59-
└─🗁 patches # Patches needed for using CMake with PHP
60-
└─🗁 ...
61-
└─🗁 php-* # Downloaded PHP sources
62-
└─🗁 ...
49+
📂 <php-build-system>
50+
└─📂 .github # GitHub directory
51+
└─📂 workflows # Workflows for GitHub actions
52+
└─📂 ...
53+
└─📂 bin # Helper development scripts, not part of the build system
54+
└─📂 ...
55+
└─📂 cmake # CMake-based PHP build system
56+
└─📂 ...
57+
└─📂 docs # Repository documentation
58+
└─📂 ...
59+
└─📂 patches # Patches needed for using CMake with PHP
60+
└─📂 ...
61+
└─📂 php-* # Downloaded PHP sources
62+
└─📂 ...
6363
├─📄 .editorconfig # EditorConfig https://editorconfig.org
6464
└─ ...
6565
```

docs/autotools.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ cause issues for C developers today.
8282
PHP build system is a collection of various files across the php-src repository:
8383
8484
```sh
85-
🗁 <php-src>
86-
└─🗁 build
85+
📂 <php-src>
86+
└─📂 build
8787
├─📄 ax_*.m4 # https://github.com/autoconf-archive/autoconf-archive
8888
├─📄 config-stubs # Adds extension and SAPI config*.m4 stubs to configure
8989
├─📄 config.guess # https://git.savannah.gnu.org/cgit/config.git
@@ -97,32 +97,32 @@ PHP build system is a collection of various files across the php-src repository:
9797
├─📄 pkg.m4 # https://gitlab.freedesktop.org/pkg-config/pkg-config
9898
├─📄 print_include.awk # Used by genif.sh
9999
└─📄 shtool # https://www.gnu.org/software/shtool/
100-
└─🗁 ext
101-
└─🗁 bcmath
100+
└─📂 ext
101+
└─📂 bcmath
102102
└─📄 config.m4 # Extension's Autoconf file
103-
└─🗁 date
103+
└─📂 date
104104
└─📄 config0.m4 # Suffix 0 priority adds file before other config.m4 extension files
105-
└─🗁 mysqlnd
105+
└─📂 mysqlnd
106106
└─📄 config9.m4 # Suffix 9 priority adds file after other config.m4 files
107-
└─🗁 opcache
108-
└─🗁 jit
107+
└─📂 opcache
108+
└─📂 jit
109109
└─📄 Makefile.frag # Makefile fragment for OPcache Jit
110110
└─📄 config.m4 # Autoconf file for OPcache extension
111-
└─🗁 main
111+
└─📂 main
112112
├─📄 build-defs.h # Generated by configure
113113
├─📄 build-defs.h.in # Template for build definitions
114114
├─📄 php_config.h # Generated by configure
115115
├─📄 php_config.h.in # Generated header template by buildconf
116116
└─📄 php_version.h # Generated by release managers using `configure`
117-
├─🗁 pear
118-
└─🗁 sapi
119-
└─🗁 cli
117+
├─📂 pear
118+
└─📂 sapi
119+
└─📂 cli
120120
└─📄 config.m4 # Autoconf M4 file for SAPI
121-
├─🗁 scripts
122-
└─🗁 TSRM
121+
├─📂 scripts
122+
└─📂 TSRM
123123
├─📄 threads.m4 # Autoconf macros for pthreads
124124
└─📄 tsrm.m4 # Autoconf macros for TSRM
125-
└─🗁 Zend
125+
└─📂 Zend
126126
├─📄 Makefile.frag # Makefile fragment for Zend engine
127127
└─📄 Zend.m4 # Autoconf macros for Zend engine
128128
├─📄 buildconf # Wrapper for autoconf and autoheader tools
@@ -379,31 +379,31 @@ build phase upon the `make` invocation.
379379
Autotools-based PHP build system files related to `bison` and `re2c`:
380380
381381
```sh
382-
🗁 <php-src>
383-
└─🗁 build
382+
📂 <php-src>
383+
└─📂 build
384384
└─📄 php.m4 # Autoconf macros with re2c and bison macros
385-
└─🗁 ext
386-
└─🗁 json
385+
└─📂 ext
386+
└─📂 json
387387
└─📄 Makefile.frag # Makefile fragment
388-
└─🗁 pdo
388+
└─📂 pdo
389389
└─📄 Makefile.frag # Makefile fragment
390-
└─🗁 pdo_mysql
390+
└─📂 pdo_mysql
391391
└─📄 Makefile.frag # Makefile fragment
392-
└─🗁 pdo_pgsql
392+
└─📂 pdo_pgsql
393393
└─📄 Makefile.frag # Makefile fragment
394-
└─🗁 pdo_sqlite
394+
└─📂 pdo_sqlite
395395
└─📄 Makefile.frag # Makefile fragment
396-
└─🗁 phar
396+
└─📂 phar
397397
└─📄 Makefile.frag # Makefile fragment
398-
└─🗁 standard
398+
└─📂 standard
399399
└─📄 Makefile.frag # Makefile fragment
400-
└─🗁 sapi
401-
└─🗁 phpdbg
400+
└─📂 sapi
401+
└─📂 phpdbg
402402
└─📄 Makefile.frag # Makefile fragment
403-
└─🗁 scripts
404-
└─🗁 dev
403+
└─📂 scripts
404+
└─📂 dev
405405
└─📄 genfiles # Parser and lexer files generator helper
406-
└─🗁 Zend
406+
└─📂 Zend
407407
└─📄 Makefile.frag # Part of Makefile related to Zend files
408408
└─📄 configure.ac # Minimum re2c and bison versions settings
409409
```

docs/cmake-intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ project(YourProjectName VERSION 1.0.0 LANGUAGES C)
108108
Project source directory example:
109109

110110
```sh
111-
🗁 YourProjectName
112-
└─🗁 src # Project source code
111+
📂 YourProjectName
112+
└─📂 src # Project source code
113113
├─📄 main.c
114114
└─📄 ...
115-
└─🗁 subdirectory # Subdirectory with its own CMakeLists
115+
└─📂 subdirectory # Subdirectory with its own CMakeLists
116116
├─📄 CMakeLists.txt
117117
├─📄 src.c
118118
└─📄 ...

0 commit comments

Comments
 (0)