123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815 |
- {
- "packages": [
- {
- "name": "chamilo/pclzip",
- "version": "v2.8.4",
- "version_normalized": "2.8.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/chamilo/pclzip.git",
- "reference": "b94b7a190e186a31bd37f21be3a83a48c7d6b49a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/chamilo/pclzip/zipball/b94b7a190e186a31bd37f21be3a83a48c7d6b49a",
- "reference": "b94b7a190e186a31bd37f21be3a83a48c7d6b49a",
- "shasum": ""
- },
- "replace": {
- "pclzip/pclzip": "^2.8"
- },
- "time": "2017-11-28T22:14:11+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "pclzip.lib.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1"
- ],
- "authors": [
- {
- "name": "Vincent Blavet"
- }
- ],
- "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
- "homepage": "https://github.com/chamilo/pclzip",
- "keywords": [
- "php",
- "zip"
- ],
- "support": {
- "issues": "https://github.com/chamilo/pclzip/issues",
- "source": "https://github.com/chamilo/pclzip/tree/v2.8.4"
- },
- "install-path": "../chamilo/pclzip"
- },
- {
- "name": "electrolinux/phpquery",
- "version": "0.9.6",
- "version_normalized": "0.9.6.0",
- "source": {
- "type": "git",
- "url": "https://github.com/electrolinux/phpquery.git",
- "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/electrolinux/phpquery/zipball/6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
- "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
- "shasum": ""
- },
- "time": "2013-03-21T12:39:33+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "classmap": [
- "phpQuery/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Tobiasz Cudnik",
- "email": "tobiasz.cudnik@gmail.com",
- "homepage": "https://github.com/TobiaszCudnik",
- "role": "Developer"
- },
- {
- "name": "didier Belot",
- "role": "Packager"
- }
- ],
- "description": "phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library",
- "homepage": "http://code.google.com/p/phpquery/",
- "support": {
- "source": "https://github.com/electrolinux/phpquery/tree/0.9.6"
- },
- "install-path": "../electrolinux/phpquery"
- },
- {
- "name": "ezyang/htmlpurifier",
- "version": "v4.13.0",
- "version_normalized": "4.13.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/ezyang/htmlpurifier.git",
- "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
- "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2"
- },
- "require-dev": {
- "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
- },
- "time": "2020-06-29T00:56:53+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-0": {
- "HTMLPurifier": "library/"
- },
- "files": [
- "library/HTMLPurifier.composer.php"
- ],
- "exclude-from-classmap": [
- "/library/HTMLPurifier/Language/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1-or-later"
- ],
- "authors": [
- {
- "name": "Edward Z. Yang",
- "email": "admin@htmlpurifier.org",
- "homepage": "http://ezyang.com"
- }
- ],
- "description": "Standards compliant HTML filter written in PHP",
- "homepage": "http://htmlpurifier.org/",
- "keywords": [
- "html"
- ],
- "support": {
- "issues": "https://github.com/ezyang/htmlpurifier/issues",
- "source": "https://github.com/ezyang/htmlpurifier/tree/master"
- },
- "install-path": "../ezyang/htmlpurifier"
- },
- {
- "name": "league/flysystem",
- "version": "1.1.5",
- "version_normalized": "1.1.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/flysystem.git",
- "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea",
- "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "league/mime-type-detection": "^1.3",
- "php": "^7.2.5 || ^8.0"
- },
- "conflict": {
- "league/flysystem-sftp": "<1.0.6"
- },
- "require-dev": {
- "phpspec/prophecy": "^1.11.1",
- "phpunit/phpunit": "^8.5.8"
- },
- "suggest": {
- "ext-ftp": "Allows you to use FTP server storage",
- "ext-openssl": "Allows you to use FTPS server storage",
- "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
- "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
- "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
- "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
- "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
- "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
- "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
- "league/flysystem-webdav": "Allows you to use WebDAV storage",
- "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
- "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
- "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
- },
- "time": "2021-08-17T13:49:42+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "League\\Flysystem\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frenky.net"
- }
- ],
- "description": "Filesystem abstraction: Many filesystems, one API.",
- "keywords": [
- "Cloud Files",
- "WebDAV",
- "abstraction",
- "aws",
- "cloud",
- "copy.com",
- "dropbox",
- "file systems",
- "files",
- "filesystem",
- "filesystems",
- "ftp",
- "rackspace",
- "remote",
- "s3",
- "sftp",
- "storage"
- ],
- "support": {
- "issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/1.1.5"
- },
- "funding": [
- {
- "url": "https://offset.earth/frankdejonge",
- "type": "other"
- }
- ],
- "install-path": "../league/flysystem"
- },
- {
- "name": "league/flysystem-cached-adapter",
- "version": "1.1.0",
- "version_normalized": "1.1.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
- "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
- "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
- "shasum": ""
- },
- "require": {
- "league/flysystem": "~1.0",
- "psr/cache": "^1.0.0"
- },
- "require-dev": {
- "mockery/mockery": "~0.9",
- "phpspec/phpspec": "^3.4",
- "phpunit/phpunit": "^5.7",
- "predis/predis": "~1.0",
- "tedivm/stash": "~0.12"
- },
- "suggest": {
- "ext-phpredis": "Pure C implemented extension for PHP"
- },
- "time": "2020-07-25T15:56:04+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "League\\Flysystem\\Cached\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "frankdejonge",
- "email": "info@frenky.net"
- }
- ],
- "description": "An adapter decorator to enable meta-data caching.",
- "support": {
- "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
- "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
- },
- "install-path": "../league/flysystem-cached-adapter"
- },
- {
- "name": "league/mime-type-detection",
- "version": "1.7.0",
- "version_normalized": "1.7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/mime-type-detection.git",
- "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
- "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
- "shasum": ""
- },
- "require": {
- "ext-fileinfo": "*",
- "php": "^7.2 || ^8.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2.18",
- "phpstan/phpstan": "^0.12.68",
- "phpunit/phpunit": "^8.5.8 || ^9.3"
- },
- "time": "2021-01-18T20:58:21+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "League\\MimeTypeDetection\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frank de Jonge",
- "email": "info@frankdejonge.nl"
- }
- ],
- "description": "Mime-type detection for Flysystem",
- "support": {
- "issues": "https://github.com/thephpleague/mime-type-detection/issues",
- "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
- },
- "funding": [
- {
- "url": "https://github.com/frankdejonge",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
- "type": "tidelift"
- }
- ],
- "install-path": "../league/mime-type-detection"
- },
- {
- "name": "mindplay/annotations",
- "version": "1.3.2",
- "version_normalized": "1.3.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-annotations/php-annotations.git",
- "reference": "7e1547259a6aa7e3abc3832207499943614e9d13"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-annotations/php-annotations/zipball/7e1547259a6aa7e3abc3832207499943614e9d13",
- "reference": "7e1547259a6aa7e3abc3832207499943614e9d13",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.3"
- },
- "require-dev": {
- "phpunit/php-code-coverage": "~1.2.1",
- "phpunit/php-file-iterator": ">=1.3.0@stable"
- },
- "time": "2021-01-21T11:42:37+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.3.x-dev"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "mindplay\\annotations\\": "src\\annotations"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-3.0+"
- ],
- "authors": [
- {
- "name": "Rasmus Schultz",
- "email": "rasmus@mindplay.dk"
- }
- ],
- "description": "Industrial-strength annotations for PHP",
- "homepage": "http://blog.mindplay.dk/",
- "keywords": [
- "annotations",
- "framework"
- ],
- "support": {
- "issues": "https://github.com/php-annotations/php-annotations/issues",
- "source": "https://github.com/php-annotations/php-annotations/tree/1.3.2"
- },
- "install-path": "../mindplay/annotations"
- },
- {
- "name": "phpmailer/phpmailer",
- "version": "v6.5.1",
- "version_normalized": "6.5.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/PHPMailer/PHPMailer.git",
- "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355",
- "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "ext-filter": "*",
- "ext-hash": "*",
- "php": ">=5.5.0"
- },
- "require-dev": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "doctrine/annotations": "^1.2",
- "php-parallel-lint/php-console-highlighter": "^0.5.0",
- "php-parallel-lint/php-parallel-lint": "^1.3",
- "phpcompatibility/php-compatibility": "^9.3.5",
- "roave/security-advisories": "dev-latest",
- "squizlabs/php_codesniffer": "^3.6.0",
- "yoast/phpunit-polyfills": "^1.0.0"
- },
- "suggest": {
- "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
- "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
- "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
- "psr/log": "For optional PSR-3 debug logging",
- "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
- "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
- },
- "time": "2021-08-18T09:14:16+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "PHPMailer\\PHPMailer\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1-only"
- ],
- "authors": [
- {
- "name": "Marcus Bointon",
- "email": "phpmailer@synchromedia.co.uk"
- },
- {
- "name": "Jim Jagielski",
- "email": "jimjag@gmail.com"
- },
- {
- "name": "Andy Prevost",
- "email": "codeworxtech@users.sourceforge.net"
- },
- {
- "name": "Brent R. Matzelle"
- }
- ],
- "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
- "support": {
- "issues": "https://github.com/PHPMailer/PHPMailer/issues",
- "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1"
- },
- "funding": [
- {
- "url": "https://github.com/Synchro",
- "type": "github"
- }
- ],
- "install-path": "../phpmailer/phpmailer"
- },
- {
- "name": "psr/cache",
- "version": "1.0.1",
- "version_normalized": "1.0.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/cache.git",
- "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
- "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "time": "2016-08-06T20:24:11+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Psr\\Cache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interface for caching libraries",
- "keywords": [
- "cache",
- "psr",
- "psr-6"
- ],
- "support": {
- "source": "https://github.com/php-fig/cache/tree/master"
- },
- "install-path": "../psr/cache"
- },
- {
- "name": "psr/container",
- "version": "1.1.1",
- "version_normalized": "1.1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
- "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
- "shasum": ""
- },
- "require": {
- "php": ">=7.2.0"
- },
- "time": "2021-03-05T17:36:06+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Psr\\Container\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
- "keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
- ],
- "support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/1.1.1"
- },
- "install-path": "../psr/container"
- },
- {
- "name": "psr/log",
- "version": "1.1.4",
- "version_normalized": "1.1.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "time": "2021-05-03T11:20:27+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1.x-dev"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Psr\\Log\\": "Psr/Log/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
- }
- ],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
- "keywords": [
- "log",
- "psr",
- "psr-3"
- ],
- "support": {
- "source": "https://github.com/php-fig/log/tree/1.1.4"
- },
- "install-path": "../psr/log"
- },
- {
- "name": "psr/simple-cache",
- "version": "1.0.1",
- "version_normalized": "1.0.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/simple-cache.git",
- "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
- "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "time": "2017-10-23T01:57:42+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Psr\\SimpleCache\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
- }
- ],
- "description": "Common interfaces for simple caching",
- "keywords": [
- "cache",
- "caching",
- "psr",
- "psr-16",
- "simple-cache"
- ],
- "support": {
- "source": "https://github.com/php-fig/simple-cache/tree/master"
- },
- "install-path": "../psr/simple-cache"
- },
- {
- "name": "symfony/polyfill-mbstring",
- "version": "v1.23.1",
- "version_normalized": "1.23.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
- "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "suggest": {
- "ext-mbstring": "For best performance"
- },
- "time": "2021-05-27T12:26:48+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.23-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for the Mbstring extension",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "install-path": "../symfony/polyfill-mbstring"
- },
- {
- "name": "symfony/polyfill-php72",
- "version": "v1.23.0",
- "version_normalized": "1.23.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
- "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "time": "2021-05-27T09:17:38+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.23-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
- },
- "files": [
- "bootstrap.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "install-path": "../symfony/polyfill-php72"
- },
- {
- "name": "symfony/polyfill-php80",
- "version": "v1.23.1",
- "version_normalized": "1.23.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
- "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1"
- },
- "time": "2021-07-28T13:41:28+00:00",
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.23-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
- },
- "files": [
- "bootstrap.php"
- ],
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "install-path": "../symfony/polyfill-php80"
- },
- {
- "name": "symfony/var-dumper",
- "version": "v4.4.30",
- "version_normalized": "4.4.30.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c",
- "reference": "7f65c44c2ce80d3a0fcdb6385ee0ad535e45660c",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php72": "~1.5",
- "symfony/polyfill-php80": "^1.16"
- },
- "conflict": {
- "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
- "symfony/console": "<3.4"
- },
- "require-dev": {
- "ext-iconv": "*",
- "symfony/console": "^3.4|^4.0|^5.0",
- "symfony/process": "^4.4|^5.0",
- "twig/twig": "^1.43|^2.13|^3.0.4"
- },
- "suggest": {
- "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
- "ext-intl": "To show region name in time zone dump",
- "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
- },
- "time": "2021-08-04T20:31:23+00:00",
- "bin": [
- "Resources/bin/var-dump-server"
- ],
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "files": [
- "Resources/functions/dump.php"
- ],
- "psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
- "homepage": "https://symfony.com",
- "keywords": [
- "debug",
- "dump"
- ],
- "support": {
- "source": "https://github.com/symfony/var-dumper/tree/v4.4.30"
- },
- "funding": [
- {
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
- }
- ],
- "install-path": "../symfony/var-dumper"
- },
- {
- "name": "thinkcmf/cmf",
- "version": "v6.0.7",
- "version_normalized": "6.0.7.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-core.git",
- "reference": "084e2fae6562484b205ceb4401320000df985b63"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-core/zipball/084e2fae6562484b205ceb4401320000df985b63",
- "reference": "084e2fae6562484b205ceb4401320000df985b63",
- "shasum": ""
- },
- "require": {
- "electrolinux/phpquery": "^0.9.6",
- "ezyang/htmlpurifier": "^4.9",
- "mindplay/annotations": "^1.3",
- "phpmailer/phpmailer": "~6.0",
- "thinkcmf/cmf-extend": "~5.1.0",
- "topthink/framework": "~6.0.0",
- "topthink/think-captcha": "~3.0.0"
- },
- "time": "2021-09-17T22:40:18+00:00",
- "type": "library",
- "extra": {
- "think": {
- "services": [
- "think\\captcha\\CaptchaService"
- ]
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "cmf\\": "src"
- },
- "files": [
- "src/common.php"
- ],
- "classmap": [
- "src/App.php",
- "src/console/command/VendorPublish.php",
- "src/captcha/Captcha.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF Core Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-core/issues",
- "source": "https://github.com/thinkcmf/cmf-core/tree/v6.0.7"
- },
- "install-path": "../thinkcmf/cmf"
- },
- {
- "name": "thinkcmf/cmf-api",
- "version": "v6.0.3",
- "version_normalized": "6.0.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-api.git",
- "reference": "4f31eeb81a6d7337eba587c216c22159cf55d37c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-api/zipball/4f31eeb81a6d7337eba587c216c22159cf55d37c",
- "reference": "4f31eeb81a6d7337eba587c216c22159cf55d37c",
- "shasum": ""
- },
- "require": {
- "thinkcmf/cmf": "^6.0.0"
- },
- "time": "2021-09-12T20:40:10+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "api\\": "src"
- },
- "files": []
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF 5.1 Core Api Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-api/issues",
- "source": "https://github.com/thinkcmf/cmf-api/tree/v6.0.3"
- },
- "install-path": "../thinkcmf/cmf-api"
- },
- {
- "name": "thinkcmf/cmf-app",
- "version": "v6.0.5",
- "version_normalized": "6.0.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-app.git",
- "reference": "50048f2ffef66fdb3698662231e0f00392c5a021"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-app/zipball/50048f2ffef66fdb3698662231e0f00392c5a021",
- "reference": "50048f2ffef66fdb3698662231e0f00392c5a021",
- "shasum": ""
- },
- "require": {
- "thinkcmf/cmf": "^6.0.0"
- },
- "time": "2021-09-17T22:42:58+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "app\\": "src"
- },
- "files": []
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF App Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-app/issues",
- "source": "https://github.com/thinkcmf/cmf-app/tree/v6.0.5"
- },
- "install-path": "../thinkcmf/cmf-app"
- },
- {
- "name": "thinkcmf/cmf-appstore",
- "version": "v1.0.4",
- "version_normalized": "1.0.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-appstore.git",
- "reference": "8becf22e6a2a87822f9aea5f59a6a7bebc52658f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-appstore/zipball/8becf22e6a2a87822f9aea5f59a6a7bebc52658f",
- "reference": "8becf22e6a2a87822f9aea5f59a6a7bebc52658f",
- "shasum": ""
- },
- "require": {
- "chamilo/pclzip": "^2.8"
- },
- "time": "2021-04-03T14:09:15+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "app\\admin\\": "src"
- },
- "files": []
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF App Store Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-appstore/issues",
- "source": "https://github.com/thinkcmf/cmf-appstore/tree/v1.0.4"
- },
- "install-path": "../thinkcmf/cmf-appstore"
- },
- {
- "name": "thinkcmf/cmf-extend",
- "version": "v5.1.1",
- "version_normalized": "5.1.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-extend.git",
- "reference": "500ac89f30b9352dbac4f3f13c88212d8b2a9618"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-extend/zipball/500ac89f30b9352dbac4f3f13c88212d8b2a9618",
- "reference": "500ac89f30b9352dbac4f3f13c88212d8b2a9618",
- "shasum": ""
- },
- "time": "2021-02-10T07:02:12+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "dir\\": "src/dir",
- "tree\\": "src/tree",
- "wxapp\\": "src/wxapp"
- },
- "files": []
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF extend Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-extend/issues",
- "source": "https://github.com/thinkcmf/cmf-extend/tree/v5.1.1"
- },
- "install-path": "../thinkcmf/cmf-extend"
- },
- {
- "name": "thinkcmf/cmf-install",
- "version": "v6.0.3",
- "version_normalized": "6.0.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-install.git",
- "reference": "7c12b4e87eb7585e74d3f0398b898bebb34e5ce5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-install/zipball/7c12b4e87eb7585e74d3f0398b898bebb34e5ce5",
- "reference": "7c12b4e87eb7585e74d3f0398b898bebb34e5ce5",
- "shasum": ""
- },
- "time": "2021-04-20T11:18:24+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "app\\": "src"
- },
- "files": []
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The ThinkCMF Install Package",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-install/issues",
- "source": "https://github.com/thinkcmf/cmf-install/tree/v6.0.3"
- },
- "install-path": "../thinkcmf/cmf-install"
- },
- {
- "name": "thinkcmf/cmf-root",
- "version": "v1.0.2",
- "version_normalized": "1.0.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-root.git",
- "reference": "070f83e79273697e58b283c7a95bdc66eb583e75"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-root/zipball/070f83e79273697e58b283c7a95bdc66eb583e75",
- "reference": "070f83e79273697e58b283c7a95bdc66eb583e75",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^1.0||^2.0"
- },
- "require-dev": {
- "composer/composer": "^1.0||^2.0"
- },
- "time": "2021-09-29T00:17:19+00:00",
- "type": "composer-plugin",
- "extra": {
- "class": "cmf\\composer\\RootDirPlugin"
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "cmf\\composer\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "The files in ThinkCMF root dir",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-root/issues",
- "source": "https://github.com/thinkcmf/cmf-root/tree/v1.0.2"
- },
- "install-path": "../thinkcmf/cmf-root"
- },
- {
- "name": "thinkcmf/cmf-route",
- "version": "v6.0.3",
- "version_normalized": "6.0.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/cmf-route.git",
- "reference": "706276d67a5a6ae68d6399107169d03e205aeaf1"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/cmf-route/zipball/706276d67a5a6ae68d6399107169d03e205aeaf1",
- "reference": "706276d67a5a6ae68d6399107169d03e205aeaf1",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.0"
- },
- "time": "2021-03-22T10:33:16+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\": "src"
- },
- "classmap": [
- "src/Route.php",
- "src/Http.php",
- "src/route/Rule.php",
- "src/route/Url.php",
- "src/route/dispatch/Controller.php",
- "src/route/dispatch/Url.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- },
- {
- "name": "catman",
- "email": "catman@thinkcmf.com"
- }
- ],
- "description": "thinkcmf6 route",
- "support": {
- "issues": "https://github.com/thinkcmf/cmf-route/issues",
- "source": "https://github.com/thinkcmf/cmf-route/tree/v6.0.3"
- },
- "install-path": "../thinkcmf/cmf-route"
- },
- {
- "name": "thinkcmf/think-template",
- "version": "v2.0.9",
- "version_normalized": "2.0.9.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/think-template.git",
- "reference": "9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/think-template/zipball/9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01",
- "reference": "9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.0",
- "psr/simple-cache": "^1.0"
- },
- "time": "2021-02-10T06:11:43+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\": "src"
- },
- "classmap": [
- "src/View.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- }
- ],
- "description": "the php template engine",
- "support": {
- "source": "https://github.com/thinkcmf/think-template/tree/v2.0.9"
- },
- "install-path": "../thinkcmf/think-template"
- },
- {
- "name": "thinkcmf/think-view",
- "version": "v1.0.15",
- "version_normalized": "1.0.15.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkcmf/think-view.git",
- "reference": "1cd8abf6639e5fe4e25f7f244152c9f67779bf67"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkcmf/think-view/zipball/1cd8abf6639e5fe4e25f7f244152c9f67779bf67",
- "reference": "1cd8abf6639e5fe4e25f7f244152c9f67779bf67",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.0",
- "thinkcmf/think-template": "~2.0.8"
- },
- "time": "2020-12-31T05:13:44+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\view\\driver\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- }
- ],
- "description": "thinkphp template driver",
- "support": {
- "source": "https://github.com/thinkcmf/think-view/tree/v1.0.15"
- },
- "install-path": "../thinkcmf/think-view"
- },
- {
- "name": "topthink/framework",
- "version": "v6.0.9",
- "version_normalized": "6.0.9.0",
- "source": {
- "type": "git",
- "url": "https://github.com/top-think/framework.git",
- "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/top-think/framework/zipball/0b5fb453f0e533de3af3a1ab6a202510b61be617",
- "reference": "0b5fb453f0e533de3af3a1ab6a202510b61be617",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "league/flysystem": "^1.1.4",
- "league/flysystem-cached-adapter": "^1.0",
- "php": ">=7.2.5",
- "psr/container": "~1.0",
- "psr/log": "~1.0",
- "psr/simple-cache": "^1.0",
- "topthink/think-helper": "^3.1.1",
- "topthink/think-orm": "^2.0"
- },
- "require-dev": {
- "mikey179/vfsstream": "^1.6",
- "mockery/mockery": "^1.2",
- "phpunit/phpunit": "^7.0"
- },
- "time": "2021-07-22T03:24:49+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "files": [],
- "psr-4": {
- "think\\": "src/think/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- },
- {
- "name": "yunwuxin",
- "email": "448901948@qq.com"
- }
- ],
- "description": "The ThinkPHP Framework.",
- "homepage": "http://thinkphp.cn/",
- "keywords": [
- "framework",
- "orm",
- "thinkphp"
- ],
- "support": {
- "issues": "https://github.com/top-think/framework/issues",
- "source": "https://github.com/top-think/framework/tree/v6.0.9"
- },
- "install-path": "../topthink/framework"
- },
- {
- "name": "topthink/think-captcha",
- "version": "v3.0.3",
- "version_normalized": "3.0.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/top-think/think-captcha.git",
- "reference": "1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/top-think/think-captcha/zipball/1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55",
- "reference": "1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55",
- "shasum": ""
- },
- "require": {
- "topthink/framework": "^6.0.0"
- },
- "time": "2020-05-19T10:55:45+00:00",
- "type": "library",
- "extra": {
- "think": {
- "services": [
- "think\\captcha\\CaptchaService"
- ],
- "config": {
- "captcha": "src/config.php"
- }
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\captcha\\": "src/"
- },
- "files": [
- "src/helper.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "yunwuxin",
- "email": "448901948@qq.com"
- }
- ],
- "description": "captcha package for thinkphp",
- "support": {
- "issues": "https://github.com/top-think/think-captcha/issues",
- "source": "https://github.com/top-think/think-captcha/tree/v3.0.3"
- },
- "install-path": "../topthink/think-captcha"
- },
- {
- "name": "topthink/think-helper",
- "version": "v3.1.5",
- "version_normalized": "3.1.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/top-think/think-helper.git",
- "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
- "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.0"
- },
- "time": "2021-06-21T06:17:31+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\": "src"
- },
- "files": [
- "src/helper.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "yunwuxin",
- "email": "448901948@qq.com"
- }
- ],
- "description": "The ThinkPHP6 Helper Package",
- "support": {
- "issues": "https://github.com/top-think/think-helper/issues",
- "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
- },
- "install-path": "../topthink/think-helper"
- },
- {
- "name": "topthink/think-orm",
- "version": "v2.0.44",
- "version_normalized": "2.0.44.0",
- "source": {
- "type": "git",
- "url": "https://github.com/top-think/think-orm.git",
- "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
- "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
- "shasum": ""
- },
- "require": {
- "ext-json": "*",
- "ext-pdo": "*",
- "php": ">=7.1.0",
- "psr/log": "~1.0",
- "psr/simple-cache": "^1.0",
- "topthink/think-helper": "^3.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^7|^8|^9.5"
- },
- "time": "2021-07-21T02:22:31+00:00",
- "type": "library",
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\": "src"
- },
- "files": [
- "stubs/load_stubs.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- }
- ],
- "description": "think orm",
- "keywords": [
- "database",
- "orm"
- ],
- "support": {
- "issues": "https://github.com/top-think/think-orm/issues",
- "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
- },
- "install-path": "../topthink/think-orm"
- },
- {
- "name": "topthink/think-trace",
- "version": "v1.4",
- "version_normalized": "1.4.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/top-think/think-trace.git",
- "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
- "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1.0",
- "topthink/framework": "^6.0.0"
- },
- "time": "2020-06-29T05:27:28+00:00",
- "type": "library",
- "extra": {
- "think": {
- "services": [
- "think\\trace\\Service"
- ],
- "config": {
- "trace": "src/config.php"
- }
- }
- },
- "installation-source": "dist",
- "autoload": {
- "psr-4": {
- "think\\trace\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "liu21st",
- "email": "liu21st@gmail.com"
- }
- ],
- "description": "thinkphp debug trace",
- "support": {
- "issues": "https://github.com/top-think/think-trace/issues",
- "source": "https://github.com/top-think/think-trace/tree/v1.4"
- },
- "install-path": "../topthink/think-trace"
- }
- ],
- "dev": true,
- "dev-package-names": [
- "symfony/polyfill-mbstring",
- "symfony/polyfill-php72",
- "symfony/polyfill-php80",
- "symfony/var-dumper",
- "topthink/think-trace"
- ]
- }
|