Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 11, 2019 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/5ead685afddde9995344d7a08768aae3 to your computer and use it in GitHub Desktop.
Save ryantm/5ead685afddde9995344d7a08768aae3 to your computer and use it in GitHub Desktop.
/nix/store/gxw9shfi7y3gmym05yhyj5wyvr5l93d1-php-7.3.3
├── bin
│   ├── pear
│   ├── peardev
│   ├── pecl
│   ├── phar -> phar.phar
│   ├── phar.phar
│   ├── php
│   ├── php-cgi
│   ├── phpdbg
│   └── php-fpm
├── etc
│   ├── pear.conf
│   ├── php-fpm.conf.default
│   ├── php-fpm.d
│   │   └── www.conf.default
│   └── php.ini
├── lib
│   ├── build
│   │   ├── acinclude.m4
│   │   ├── ax_check_compile_flag.m4
│   │   ├── ax_gcc_func_attribute.m4
│   │   ├── config.guess
│   │   ├── config.sub
│   │   ├── libtool.m4
│   │   ├── ltmain.sh
│   │   ├── Makefile.global
│   │   ├── mkdep.awk
│   │   ├── phpize.m4
│   │   ├── run-tests.php
│   │   ├── scan_makefile_in.awk
│   │   └── shtool
│   └── php
│   ├── Archive
│   │   └── Tar.php
│   ├── Console
│   │   └── Getopt.php
│   ├── data
│   │   └── PEAR
│   │   ├── package.dtd
│   │   └── template.spec
│   ├── doc
│   │   ├── Archive_Tar
│   │   │   └── docs
│   │   │   └── Archive_Tar.txt
│   │   ├── PEAR
│   │   │   ├── INSTALL
│   │   │   ├── LICENSE
│   │   │   └── README.rst
│   │   ├── Structures_Graph
│   │   │   ├── docs
│   │   │   │   └── tutorials
│   │   │   │   └── Structures_Graph
│   │   │   │   └── Structures_Graph.pkg
│   │   │   └── LICENSE
│   │   └── XML_Util
│   │   └── examples
│   │   ├── example2.php
│   │   └── example.php
│   ├── extensions
│   │   └── opcache.so
│   ├── OS
│   │   └── Guess.php
│   ├── PEAR
│   │   ├── Builder.php
│   │   ├── ChannelFile
│   │   │   └── Parser.php
│   │   ├── ChannelFile.php
│   │   ├── Command
│   │   │   ├── Auth.php
│   │   │   ├── Auth.xml
│   │   │   ├── Build.php
│   │   │   ├── Build.xml
│   │   │   ├── Channels.php
│   │   │   ├── Channels.xml
│   │   │   ├── Common.php
│   │   │   ├── Config.php
│   │   │   ├── Config.xml
│   │   │   ├── Install.php
│   │   │   ├── Install.xml
│   │   │   ├── Mirror.php
│   │   │   ├── Mirror.xml
│   │   │   ├── Package.php
│   │   │   ├── Package.xml
│   │   │   ├── Pickle.php
│   │   │   ├── Pickle.xml
│   │   │   ├── Registry.php
│   │   │   ├── Registry.xml
│   │   │   ├── Remote.php
│   │   │   ├── Remote.xml
│   │   │   ├── Test.php
│   │   │   └── Test.xml
│   │   ├── Command.php
│   │   ├── Common.php
│   │   ├── Config.php
│   │   ├── Dependency2.php
│   │   ├── DependencyDB.php
│   │   ├── Downloader
│   │   │   └── Package.php
│   │   ├── Downloader.php
│   │   ├── ErrorStack.php
│   │   ├── Exception.php
│   │   ├── Frontend
│   │   │   └── CLI.php
│   │   ├── Frontend.php
│   │   ├── Installer
│   │   │   ├── Role
│   │   │   │   ├── Cfg.php
│   │   │   │   ├── Cfg.xml
│   │   │   │   ├── Common.php
│   │   │   │   ├── Data.php
│   │   │   │   ├── Data.xml
│   │   │   │   ├── Doc.php
│   │   │   │   ├── Doc.xml
│   │   │   │   ├── Ext.php
│   │   │   │   ├── Ext.xml
│   │   │   │   ├── Man.php
│   │   │   │   ├── Man.xml
│   │   │   │   ├── Php.php
│   │   │   │   ├── Php.xml
│   │   │   │   ├── Script.php
│   │   │   │   ├── Script.xml
│   │   │   │   ├── Src.php
│   │   │   │   ├── Src.xml
│   │   │   │   ├── Test.php
│   │   │   │   ├── Test.xml
│   │   │   │   ├── Www.php
│   │   │   │   └── Www.xml
│   │   │   └── Role.php
│   │   ├── Installer.php
│   │   ├── PackageFile
│   │   │   ├── Generator
│   │   │   │   ├── v1.php
│   │   │   │   └── v2.php
│   │   │   ├── Parser
│   │   │   │   ├── v1.php
│   │   │   │   └── v2.php
│   │   │   ├── v1.php
│   │   │   ├── v2
│   │   │   │   ├── rw.php
│   │   │   │   └── Validator.php
│   │   │   └── v2.php
│   │   ├── PackageFile.php
│   │   ├── Packager.php
│   │   ├── Proxy.php
│   │   ├── Registry.php
│   │   ├── REST
│   │   │   ├── 10.php
│   │   │   ├── 11.php
│   │   │   └── 13.php
│   │   ├── REST.php
│   │   ├── RunTest.php
│   │   ├── Task
│   │   │   ├── Common.php
│   │   │   ├── Postinstallscript
│   │   │   │   └── rw.php
│   │   │   ├── Postinstallscript.php
│   │   │   ├── Replace
│   │   │   │   └── rw.php
│   │   │   ├── Replace.php
│   │   │   ├── Unixeol
│   │   │   │   └── rw.php
│   │   │   ├── Unixeol.php
│   │   │   ├── Windowseol
│   │   │   │   └── rw.php
│   │   │   └── Windowseol.php
│   │   ├── Validate.php
│   │   ├── Validator
│   │   │   └── PECL.php
│   │   └── XMLParser.php
│   ├── pearcmd.php
│   ├── PEAR.php
│   ├── peclcmd.php
│   ├── Structures
│   │   ├── Graph
│   │   │   ├── Manipulator
│   │   │   │   ├── AcyclicTest.php
│   │   │   │   └── TopologicalSorter.php
│   │   │   └── Node.php
│   │   └── Graph.php
│   ├── System.php
│   ├── test
│   │   ├── Console_Getopt
│   │   │   └── tests
│   │   │   ├── 001-getopt.phpt
│   │   │   ├── bug10557.phpt
│   │   │   ├── bug11068.phpt
│   │   │   └── bug13140.phpt
│   │   ├── Structures_Graph
│   │   │   └── tests
│   │   │   ├── AcyclicTestTest.php
│   │   │   ├── AllTests.php
│   │   │   ├── BasicGraphTest.php
│   │   │   ├── helper.inc
│   │   │   └── TopologicalSorterTest.php
│   │   └── XML_Util
│   │   └── tests
│   │   ├── AbstractUnitTests.php
│   │   ├── ApiVersionTests.php
│   │   ├── AttributesToStringTests.php
│   │   ├── Bug18343Tests.php
│   │   ├── Bug21177Tests.php
│   │   ├── Bug21184Tests.php
│   │   ├── Bug4950Tests.php
│   │   ├── Bug5392Tests.php
│   │   ├── CollapseEmptyTagsTests.php
│   │   ├── CreateCDataSectionTests.php
│   │   ├── CreateCommentTests.php
│   │   ├── CreateEndElementTests.php
│   │   ├── CreateStartElementTests.php
│   │   ├── CreateTagFromArrayTests.php
│   │   ├── CreateTagTests.php
│   │   ├── GetDocTypeDeclarationTests.php
│   │   ├── GetXmlDeclarationTests.php
│   │   ├── IsValidNameTests.php
│   │   ├── RaiseErrorTests.php
│   │   ├── ReplaceEntitiesTests.php
│   │   ├── ReverseEntitiesTests.php
│   │   └── SplitQualifiedNameTests.php
│   └── XML
│   └── Util.php
├── modules
│   └── libphp7.so
├── php
│   └── php
│   └── fpm
│   └── status.html
├── sbin -> bin
├── share
│   └── man
│   ├── man1
│   │   ├── phar.1.gz
│   │   ├── phar.phar.1.gz
│   │   ├── php.1.gz
│   │   ├── php-cgi.1.gz
│   │   └── phpdbg.1.gz
│   └── man8
│   └── php-fpm.8.gz
└── var
├── log
└── run
63 directories, 177 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment