installed.json 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.2.0",
  6. "version_normalized": "2.2.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": ">=5.5"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  30. "squizlabs/php_codesniffer": "^3.0"
  31. },
  32. "time": "2019-01-01T23:59:15+00:00",
  33. "type": "library",
  34. "installation-source": "dist",
  35. "autoload": {
  36. "files": [
  37. "src/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Adbar\\": "src"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Riku Särkinen",
  50. "email": "riku@adbar.io"
  51. }
  52. ],
  53. "description": "PHP dot notation access to arrays",
  54. "homepage": "https://github.com/adbario/php-dot-notation",
  55. "keywords": [
  56. "ArrayAccess",
  57. "dotnotation"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/adbario/php-dot-notation/issues",
  61. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  62. },
  63. "install-path": "../adbario/php-dot-notation"
  64. },
  65. {
  66. "name": "alibabacloud/client",
  67. "version": "1.5.29",
  68. "version_normalized": "1.5.29.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  72. "reference": "2d0137828ef5c44664dcb8cc90eac4f545dd3301"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/2d0137828ef5c44664dcb8cc90eac4f545dd3301",
  77. "reference": "2d0137828ef5c44664dcb8cc90eac4f545dd3301",
  78. "shasum": "",
  79. "mirrors": [
  80. {
  81. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  82. "preferred": true
  83. }
  84. ]
  85. },
  86. "require": {
  87. "adbario/php-dot-notation": "^2.2",
  88. "clagiordano/weblibs-configmanager": "^1.0",
  89. "danielstjules/stringy": "^3.1",
  90. "ext-curl": "*",
  91. "ext-json": "*",
  92. "ext-libxml": "*",
  93. "ext-mbstring": "*",
  94. "ext-openssl": "*",
  95. "ext-simplexml": "*",
  96. "ext-xmlwriter": "*",
  97. "guzzlehttp/guzzle": "^6.3|^7.0",
  98. "mtdowling/jmespath.php": "^2.5",
  99. "php": ">=5.5"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "league/climate": "^3.2.4",
  109. "mikey179/vfsstream": "^1.6",
  110. "monolog/monolog": "^1.24",
  111. "phpunit/phpunit": "^5.7.27",
  112. "psr/cache": "^1.0",
  113. "symfony/dotenv": "^3.4",
  114. "symfony/var-dumper": "^3.4"
  115. },
  116. "suggest": {
  117. "ext-sockets": "To use client-side monitoring"
  118. },
  119. "time": "2020-08-03T06:19:07+00:00",
  120. "type": "library",
  121. "installation-source": "dist",
  122. "autoload": {
  123. "psr-4": {
  124. "AlibabaCloud\\Client\\": "src"
  125. },
  126. "files": [
  127. "src/Functions.php"
  128. ]
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "install-path": "../alibabacloud/client"
  158. },
  159. {
  160. "name": "alibabacloud/tea",
  161. "version": "3.1.20",
  162. "version_normalized": "3.1.20.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/aliyun/tea-php.git",
  166. "reference": "03926337225a8c039d1512fd7a920b2dcfb3ff42"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/03926337225a8c039d1512fd7a920b2dcfb3ff42",
  171. "reference": "03926337225a8c039d1512fd7a920b2dcfb3ff42",
  172. "shasum": "",
  173. "mirrors": [
  174. {
  175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  176. "preferred": true
  177. }
  178. ]
  179. },
  180. "require": {
  181. "adbario/php-dot-notation": "^2.2",
  182. "ext-curl": "*",
  183. "ext-json": "*",
  184. "ext-libxml": "*",
  185. "ext-mbstring": "*",
  186. "ext-openssl": "*",
  187. "ext-simplexml": "*",
  188. "ext-xmlwriter": "*",
  189. "guzzlehttp/guzzle": "^6.3|^7.0",
  190. "php": ">=5.5"
  191. },
  192. "require-dev": {
  193. "phpunit/phpunit": "*",
  194. "symfony/dotenv": "^3.4",
  195. "symfony/var-dumper": "^3.4"
  196. },
  197. "suggest": {
  198. "ext-sockets": "To use client-side monitoring"
  199. },
  200. "time": "2020-12-02T07:17:07+00:00",
  201. "type": "library",
  202. "installation-source": "dist",
  203. "autoload": {
  204. "psr-4": {
  205. "AlibabaCloud\\Tea\\": "src"
  206. }
  207. },
  208. "notification-url": "https://packagist.org/downloads/",
  209. "license": [
  210. "Apache-2.0"
  211. ],
  212. "authors": [
  213. {
  214. "name": "Alibaba Cloud SDK",
  215. "email": "sdk-team@alibabacloud.com",
  216. "homepage": "http://www.alibabacloud.com"
  217. }
  218. ],
  219. "description": "Client of Tea for PHP",
  220. "homepage": "https://www.alibabacloud.com/",
  221. "keywords": [
  222. "alibabacloud",
  223. "client",
  224. "cloud",
  225. "tea"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/aliyun/tea-php/issues",
  229. "source": "https://github.com/aliyun/tea-php"
  230. },
  231. "install-path": "../alibabacloud/tea"
  232. },
  233. {
  234. "name": "alibabacloud/tea-fileform",
  235. "version": "0.3.4",
  236. "version_normalized": "0.3.4.0",
  237. "source": {
  238. "type": "git",
  239. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  240. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  241. },
  242. "dist": {
  243. "type": "zip",
  244. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  245. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  246. "shasum": "",
  247. "mirrors": [
  248. {
  249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  250. "preferred": true
  251. }
  252. ]
  253. },
  254. "require": {
  255. "alibabacloud/tea": "^3.0",
  256. "php": ">5.5"
  257. },
  258. "require-dev": {
  259. "phpunit/phpunit": "^4.8.35|^5.4.3"
  260. },
  261. "time": "2020-12-01T07:24:35+00:00",
  262. "type": "library",
  263. "installation-source": "dist",
  264. "autoload": {
  265. "psr-4": {
  266. "AlibabaCloud\\Tea\\FileForm\\": "src"
  267. }
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "Apache-2.0"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Alibaba Cloud SDK",
  276. "email": "sdk-team@alibabacloud.com"
  277. }
  278. ],
  279. "description": "Alibaba Cloud Tea File Library for PHP",
  280. "support": {
  281. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  282. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  283. },
  284. "install-path": "../alibabacloud/tea-fileform"
  285. },
  286. {
  287. "name": "alipaysdk/easysdk",
  288. "version": "2.2.0",
  289. "version_normalized": "2.2.0.0",
  290. "source": {
  291. "type": "git",
  292. "url": "https://github.com/alipay/alipay-easysdk.git",
  293. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480"
  294. },
  295. "dist": {
  296. "type": "zip",
  297. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/7a1cfa83c7e140bded957498ea072c77611e6480",
  298. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480",
  299. "shasum": "",
  300. "mirrors": [
  301. {
  302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  303. "preferred": true
  304. }
  305. ]
  306. },
  307. "require": {
  308. "adbario/php-dot-notation": "^2.2",
  309. "alibabacloud/tea": "^3.1",
  310. "alibabacloud/tea-fileform": "^0.3.2",
  311. "danielstjules/stringy": "^3.1",
  312. "ext-ctype": "*",
  313. "ext-curl": "*",
  314. "ext-dom": "*",
  315. "ext-fileinfo": "*",
  316. "ext-json": "*",
  317. "ext-libxml": "*",
  318. "ext-mbstring": "*",
  319. "ext-openssl": "*",
  320. "ext-simplexml": "*",
  321. "ext-xmlwriter": "*",
  322. "guzzlehttp/guzzle": ">=6.3",
  323. "mtdowling/jmespath.php": "^2.4",
  324. "php": ">=7.0",
  325. "pimple/pimple": "^3.0",
  326. "psr/log": "^1.1",
  327. "songshenzong/support": "^2.0",
  328. "xin/container": "^2.0.1"
  329. },
  330. "require-dev": {
  331. "phpunit/phpunit": "^7.5"
  332. },
  333. "time": "2021-01-19T07:30:32+00:00",
  334. "type": "library",
  335. "installation-source": "dist",
  336. "autoload": {
  337. "psr-4": {
  338. "Alipay\\EasySDK\\": "php/src/"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "junying.wjy",
  348. "email": "junying.wjy@antfin.com"
  349. }
  350. ],
  351. "description": "支付宝官方 Alipay Easy SDK",
  352. "support": {
  353. "issues": "https://github.com/alipay/alipay-easysdk/issues",
  354. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.0"
  355. },
  356. "install-path": "../alipaysdk/easysdk"
  357. },
  358. {
  359. "name": "aliyuncs/oss-sdk-php",
  360. "version": "v2.4.1",
  361. "version_normalized": "2.4.1.0",
  362. "source": {
  363. "type": "git",
  364. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  365. "reference": "492866331b7bafaac09506cf42f351b7e9e63766"
  366. },
  367. "dist": {
  368. "type": "zip",
  369. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/492866331b7bafaac09506cf42f351b7e9e63766",
  370. "reference": "492866331b7bafaac09506cf42f351b7e9e63766",
  371. "shasum": "",
  372. "mirrors": [
  373. {
  374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  375. "preferred": true
  376. }
  377. ]
  378. },
  379. "require": {
  380. "php": ">=5.3"
  381. },
  382. "require-dev": {
  383. "phpunit/phpunit": "~4.0",
  384. "satooshi/php-coveralls": "~1.0"
  385. },
  386. "time": "2020-09-29T06:23:57+00:00",
  387. "type": "library",
  388. "installation-source": "dist",
  389. "autoload": {
  390. "psr-4": {
  391. "OSS\\": "src/OSS"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "MIT"
  397. ],
  398. "authors": [
  399. {
  400. "name": "Aliyuncs",
  401. "homepage": "http://www.aliyun.com"
  402. }
  403. ],
  404. "description": "Aliyun OSS SDK for PHP",
  405. "homepage": "http://www.aliyun.com/product/oss/",
  406. "support": {
  407. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  408. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.1"
  409. },
  410. "install-path": "../aliyuncs/oss-sdk-php"
  411. },
  412. {
  413. "name": "clagiordano/weblibs-configmanager",
  414. "version": "v1.1.0",
  415. "version_normalized": "1.1.0.0",
  416. "source": {
  417. "type": "git",
  418. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  419. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  420. },
  421. "dist": {
  422. "type": "zip",
  423. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  424. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  425. "shasum": "",
  426. "mirrors": [
  427. {
  428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  429. "preferred": true
  430. }
  431. ]
  432. },
  433. "require": {
  434. "php": ">=5.4"
  435. },
  436. "require-dev": {
  437. "clagiordano/phpunit-result-printer": "^1",
  438. "phpunit/phpunit": "^4.8"
  439. },
  440. "time": "2020-07-20T20:39:25+00:00",
  441. "type": "library",
  442. "installation-source": "dist",
  443. "autoload": {
  444. "psr-4": {
  445. "clagiordano\\weblibs\\configmanager\\": "src/"
  446. }
  447. },
  448. "notification-url": "https://packagist.org/downloads/",
  449. "license": [
  450. "LGPL-3.0-or-later"
  451. ],
  452. "authors": [
  453. {
  454. "name": "Claudio Giordano",
  455. "email": "claudio.giordano@autistici.org",
  456. "role": "Developer"
  457. }
  458. ],
  459. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  460. "keywords": [
  461. "clagiordano",
  462. "configuration",
  463. "manager",
  464. "tool",
  465. "weblibs"
  466. ],
  467. "support": {
  468. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  469. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.1.0"
  470. },
  471. "install-path": "../clagiordano/weblibs-configmanager"
  472. },
  473. {
  474. "name": "danielstjules/stringy",
  475. "version": "3.1.0",
  476. "version_normalized": "3.1.0.0",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/danielstjules/Stringy.git",
  480. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  485. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  486. "shasum": "",
  487. "mirrors": [
  488. {
  489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  490. "preferred": true
  491. }
  492. ]
  493. },
  494. "require": {
  495. "php": ">=5.4.0",
  496. "symfony/polyfill-mbstring": "~1.1"
  497. },
  498. "require-dev": {
  499. "phpunit/phpunit": "~4.0"
  500. },
  501. "time": "2017-06-12T01:10:27+00:00",
  502. "type": "library",
  503. "installation-source": "dist",
  504. "autoload": {
  505. "psr-4": {
  506. "Stringy\\": "src/"
  507. },
  508. "files": [
  509. "src/Create.php"
  510. ]
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "MIT"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Daniel St. Jules",
  519. "email": "danielst.jules@gmail.com",
  520. "homepage": "http://www.danielstjules.com"
  521. }
  522. ],
  523. "description": "A string manipulation library with multibyte support",
  524. "homepage": "https://github.com/danielstjules/Stringy",
  525. "keywords": [
  526. "UTF",
  527. "helpers",
  528. "manipulation",
  529. "methods",
  530. "multibyte",
  531. "string",
  532. "utf-8",
  533. "utility",
  534. "utils"
  535. ],
  536. "support": {
  537. "issues": "https://github.com/danielstjules/Stringy/issues",
  538. "source": "https://github.com/danielstjules/Stringy"
  539. },
  540. "install-path": "../danielstjules/stringy"
  541. },
  542. {
  543. "name": "endroid/qr-code",
  544. "version": "1.9.3",
  545. "version_normalized": "1.9.3.0",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/endroid/qr-code.git",
  549. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/endroid/qr-code/zipball/c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  554. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  555. "shasum": "",
  556. "mirrors": [
  557. {
  558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  559. "preferred": true
  560. }
  561. ]
  562. },
  563. "require": {
  564. "ext-gd": "*",
  565. "php": ">=5.4",
  566. "symfony/options-resolver": "^2.3|^3.0"
  567. },
  568. "require-dev": {
  569. "phpunit/phpunit": "^4.0|^5.0",
  570. "sensio/framework-extra-bundle": "^3.0",
  571. "symfony/browser-kit": "^2.3|^3.0",
  572. "symfony/framework-bundle": "^2.3|^3.0",
  573. "symfony/http-kernel": "^2.3|^3.0"
  574. },
  575. "time": "2017-04-08T09:13:59+00:00",
  576. "type": "library",
  577. "extra": {
  578. "branch-alias": {
  579. "dev-master": "1.x-dev"
  580. }
  581. },
  582. "installation-source": "dist",
  583. "autoload": {
  584. "psr-4": {
  585. "Endroid\\QrCode\\": "src/"
  586. }
  587. },
  588. "notification-url": "https://packagist.org/downloads/",
  589. "license": [
  590. "MIT"
  591. ],
  592. "authors": [
  593. {
  594. "name": "Jeroen van den Enden",
  595. "email": "info@endroid.nl",
  596. "homepage": "http://endroid.nl/"
  597. }
  598. ],
  599. "description": "Endroid QR Code",
  600. "homepage": "https://github.com/endroid/QrCode",
  601. "keywords": [
  602. "bundle",
  603. "code",
  604. "endroid",
  605. "qr",
  606. "qrcode",
  607. "symfony"
  608. ],
  609. "support": {
  610. "issues": "https://github.com/endroid/qr-code/issues",
  611. "source": "https://github.com/endroid/qr-code/tree/1.9.3"
  612. },
  613. "install-path": "../endroid/qr-code"
  614. },
  615. {
  616. "name": "ezyang/htmlpurifier",
  617. "version": "v4.13.0",
  618. "version_normalized": "4.13.0.0",
  619. "source": {
  620. "type": "git",
  621. "url": "https://github.com/ezyang/htmlpurifier.git",
  622. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  623. },
  624. "dist": {
  625. "type": "zip",
  626. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  627. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  628. "shasum": "",
  629. "mirrors": [
  630. {
  631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  632. "preferred": true
  633. }
  634. ]
  635. },
  636. "require": {
  637. "php": ">=5.2"
  638. },
  639. "require-dev": {
  640. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  641. },
  642. "time": "2020-06-29T00:56:53+00:00",
  643. "type": "library",
  644. "installation-source": "dist",
  645. "autoload": {
  646. "psr-0": {
  647. "HTMLPurifier": "library/"
  648. },
  649. "files": [
  650. "library/HTMLPurifier.composer.php"
  651. ],
  652. "exclude-from-classmap": [
  653. "/library/HTMLPurifier/Language/"
  654. ]
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "LGPL-2.1-or-later"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Edward Z. Yang",
  663. "email": "admin@htmlpurifier.org",
  664. "homepage": "http://ezyang.com"
  665. }
  666. ],
  667. "description": "Standards compliant HTML filter written in PHP",
  668. "homepage": "http://htmlpurifier.org/",
  669. "keywords": [
  670. "html"
  671. ],
  672. "support": {
  673. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  674. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  675. },
  676. "install-path": "../ezyang/htmlpurifier"
  677. },
  678. {
  679. "name": "guzzlehttp/guzzle",
  680. "version": "7.2.0",
  681. "version_normalized": "7.2.0.0",
  682. "source": {
  683. "type": "git",
  684. "url": "https://github.com/guzzle/guzzle.git",
  685. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79"
  686. },
  687. "dist": {
  688. "type": "zip",
  689. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0aa74dfb41ae110835923ef10a9d803a22d50e79",
  690. "reference": "0aa74dfb41ae110835923ef10a9d803a22d50e79",
  691. "shasum": "",
  692. "mirrors": [
  693. {
  694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  695. "preferred": true
  696. }
  697. ]
  698. },
  699. "require": {
  700. "ext-json": "*",
  701. "guzzlehttp/promises": "^1.4",
  702. "guzzlehttp/psr7": "^1.7",
  703. "php": "^7.2.5 || ^8.0",
  704. "psr/http-client": "^1.0"
  705. },
  706. "provide": {
  707. "psr/http-client-implementation": "1.0"
  708. },
  709. "require-dev": {
  710. "ext-curl": "*",
  711. "php-http/client-integration-tests": "^3.0",
  712. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  713. "psr/log": "^1.1"
  714. },
  715. "suggest": {
  716. "ext-curl": "Required for CURL handler support",
  717. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  718. "psr/log": "Required for using the Log middleware"
  719. },
  720. "time": "2020-10-10T11:47:56+00:00",
  721. "type": "library",
  722. "extra": {
  723. "branch-alias": {
  724. "dev-master": "7.1-dev"
  725. }
  726. },
  727. "installation-source": "dist",
  728. "autoload": {
  729. "psr-4": {
  730. "GuzzleHttp\\": "src/"
  731. },
  732. "files": [
  733. "src/functions_include.php"
  734. ]
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Michael Dowling",
  743. "email": "mtdowling@gmail.com",
  744. "homepage": "https://github.com/mtdowling"
  745. },
  746. {
  747. "name": "Márk Sági-Kazár",
  748. "email": "mark.sagikazar@gmail.com",
  749. "homepage": "https://sagikazarmark.hu"
  750. }
  751. ],
  752. "description": "Guzzle is a PHP HTTP client library",
  753. "homepage": "http://guzzlephp.org/",
  754. "keywords": [
  755. "client",
  756. "curl",
  757. "framework",
  758. "http",
  759. "http client",
  760. "psr-18",
  761. "psr-7",
  762. "rest",
  763. "web service"
  764. ],
  765. "support": {
  766. "issues": "https://github.com/guzzle/guzzle/issues",
  767. "source": "https://github.com/guzzle/guzzle/tree/7.2.0"
  768. },
  769. "funding": [
  770. {
  771. "url": "https://github.com/GrahamCampbell",
  772. "type": "github"
  773. },
  774. {
  775. "url": "https://github.com/Nyholm",
  776. "type": "github"
  777. },
  778. {
  779. "url": "https://github.com/alexeyshockov",
  780. "type": "github"
  781. },
  782. {
  783. "url": "https://github.com/gmponos",
  784. "type": "github"
  785. }
  786. ],
  787. "install-path": "../guzzlehttp/guzzle"
  788. },
  789. {
  790. "name": "guzzlehttp/promises",
  791. "version": "1.4.0",
  792. "version_normalized": "1.4.0.0",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/guzzle/promises.git",
  796. "reference": "60d379c243457e073cff02bc323a2a86cb355631"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631",
  801. "reference": "60d379c243457e073cff02bc323a2a86cb355631",
  802. "shasum": "",
  803. "mirrors": [
  804. {
  805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  806. "preferred": true
  807. }
  808. ]
  809. },
  810. "require": {
  811. "php": ">=5.5"
  812. },
  813. "require-dev": {
  814. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  815. },
  816. "time": "2020-09-30T07:37:28+00:00",
  817. "type": "library",
  818. "extra": {
  819. "branch-alias": {
  820. "dev-master": "1.4-dev"
  821. }
  822. },
  823. "installation-source": "dist",
  824. "autoload": {
  825. "psr-4": {
  826. "GuzzleHttp\\Promise\\": "src/"
  827. },
  828. "files": [
  829. "src/functions_include.php"
  830. ]
  831. },
  832. "notification-url": "https://packagist.org/downloads/",
  833. "license": [
  834. "MIT"
  835. ],
  836. "authors": [
  837. {
  838. "name": "Michael Dowling",
  839. "email": "mtdowling@gmail.com",
  840. "homepage": "https://github.com/mtdowling"
  841. }
  842. ],
  843. "description": "Guzzle promises library",
  844. "keywords": [
  845. "promise"
  846. ],
  847. "support": {
  848. "issues": "https://github.com/guzzle/promises/issues",
  849. "source": "https://github.com/guzzle/promises/tree/1.4.0"
  850. },
  851. "install-path": "../guzzlehttp/promises"
  852. },
  853. {
  854. "name": "guzzlehttp/psr7",
  855. "version": "1.7.0",
  856. "version_normalized": "1.7.0.0",
  857. "source": {
  858. "type": "git",
  859. "url": "https://github.com/guzzle/psr7.git",
  860. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3"
  861. },
  862. "dist": {
  863. "type": "zip",
  864. "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3",
  865. "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3",
  866. "shasum": "",
  867. "mirrors": [
  868. {
  869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  870. "preferred": true
  871. }
  872. ]
  873. },
  874. "require": {
  875. "php": ">=5.4.0",
  876. "psr/http-message": "~1.0",
  877. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  878. },
  879. "provide": {
  880. "psr/http-message-implementation": "1.0"
  881. },
  882. "require-dev": {
  883. "ext-zlib": "*",
  884. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  885. },
  886. "suggest": {
  887. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  888. },
  889. "time": "2020-09-30T07:37:11+00:00",
  890. "type": "library",
  891. "extra": {
  892. "branch-alias": {
  893. "dev-master": "1.7-dev"
  894. }
  895. },
  896. "installation-source": "dist",
  897. "autoload": {
  898. "psr-4": {
  899. "GuzzleHttp\\Psr7\\": "src/"
  900. },
  901. "files": [
  902. "src/functions_include.php"
  903. ]
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Michael Dowling",
  912. "email": "mtdowling@gmail.com",
  913. "homepage": "https://github.com/mtdowling"
  914. },
  915. {
  916. "name": "Tobias Schultze",
  917. "homepage": "https://github.com/Tobion"
  918. }
  919. ],
  920. "description": "PSR-7 message implementation that also provides common utility methods",
  921. "keywords": [
  922. "http",
  923. "message",
  924. "psr-7",
  925. "request",
  926. "response",
  927. "stream",
  928. "uri",
  929. "url"
  930. ],
  931. "support": {
  932. "issues": "https://github.com/guzzle/psr7/issues",
  933. "source": "https://github.com/guzzle/psr7/tree/1.7.0"
  934. },
  935. "install-path": "../guzzlehttp/psr7"
  936. },
  937. {
  938. "name": "lcobucci/jwt",
  939. "version": "3.4.5",
  940. "version_normalized": "3.4.5.0",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/lcobucci/jwt.git",
  944. "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/511629a54465e89a31d3d7e4cf0935feab8b14c1",
  949. "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1",
  950. "shasum": "",
  951. "mirrors": [
  952. {
  953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  954. "preferred": true
  955. }
  956. ]
  957. },
  958. "require": {
  959. "ext-mbstring": "*",
  960. "ext-openssl": "*",
  961. "php": "^5.6 || ^7.0"
  962. },
  963. "require-dev": {
  964. "mikey179/vfsstream": "~1.5",
  965. "phpmd/phpmd": "~2.2",
  966. "phpunit/php-invoker": "~1.1",
  967. "phpunit/phpunit": "^5.7 || ^7.3",
  968. "squizlabs/php_codesniffer": "~2.3"
  969. },
  970. "suggest": {
  971. "lcobucci/clock": "*"
  972. },
  973. "time": "2021-02-16T09:40:01+00:00",
  974. "type": "library",
  975. "extra": {
  976. "branch-alias": {
  977. "dev-master": "3.1-dev"
  978. }
  979. },
  980. "installation-source": "dist",
  981. "autoload": {
  982. "psr-4": {
  983. "Lcobucci\\JWT\\": "src"
  984. },
  985. "files": [
  986. "compat/class-aliases.php",
  987. "compat/json-exception-polyfill.php",
  988. "compat/lcobucci-clock-polyfill.php"
  989. ]
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "BSD-3-Clause"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Luís Otávio Cobucci Oblonczyk",
  998. "email": "lcobucci@gmail.com",
  999. "role": "Developer"
  1000. }
  1001. ],
  1002. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1003. "keywords": [
  1004. "JWS",
  1005. "jwt"
  1006. ],
  1007. "support": {
  1008. "issues": "https://github.com/lcobucci/jwt/issues",
  1009. "source": "https://github.com/lcobucci/jwt/tree/3.4.5"
  1010. },
  1011. "funding": [
  1012. {
  1013. "url": "https://github.com/lcobucci",
  1014. "type": "github"
  1015. },
  1016. {
  1017. "url": "https://www.patreon.com/lcobucci",
  1018. "type": "patreon"
  1019. }
  1020. ],
  1021. "install-path": "../lcobucci/jwt"
  1022. },
  1023. {
  1024. "name": "league/flysystem",
  1025. "version": "1.1.3",
  1026. "version_normalized": "1.1.3.0",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/thephpleague/flysystem.git",
  1030. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  1035. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  1036. "shasum": "",
  1037. "mirrors": [
  1038. {
  1039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1040. "preferred": true
  1041. }
  1042. ]
  1043. },
  1044. "require": {
  1045. "ext-fileinfo": "*",
  1046. "league/mime-type-detection": "^1.3",
  1047. "php": "^7.2.5 || ^8.0"
  1048. },
  1049. "conflict": {
  1050. "league/flysystem-sftp": "<1.0.6"
  1051. },
  1052. "require-dev": {
  1053. "phpspec/prophecy": "^1.11.1",
  1054. "phpunit/phpunit": "^8.5.8"
  1055. },
  1056. "suggest": {
  1057. "ext-fileinfo": "Required for MimeType",
  1058. "ext-ftp": "Allows you to use FTP server storage",
  1059. "ext-openssl": "Allows you to use FTPS server storage",
  1060. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1061. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1062. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1063. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1064. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1065. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1066. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1067. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1068. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1069. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1070. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1071. },
  1072. "time": "2020-08-23T07:39:11+00:00",
  1073. "type": "library",
  1074. "extra": {
  1075. "branch-alias": {
  1076. "dev-master": "1.1-dev"
  1077. }
  1078. },
  1079. "installation-source": "dist",
  1080. "autoload": {
  1081. "psr-4": {
  1082. "League\\Flysystem\\": "src/"
  1083. }
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Frank de Jonge",
  1092. "email": "info@frenky.net"
  1093. }
  1094. ],
  1095. "description": "Filesystem abstraction: Many filesystems, one API.",
  1096. "keywords": [
  1097. "Cloud Files",
  1098. "WebDAV",
  1099. "abstraction",
  1100. "aws",
  1101. "cloud",
  1102. "copy.com",
  1103. "dropbox",
  1104. "file systems",
  1105. "files",
  1106. "filesystem",
  1107. "filesystems",
  1108. "ftp",
  1109. "rackspace",
  1110. "remote",
  1111. "s3",
  1112. "sftp",
  1113. "storage"
  1114. ],
  1115. "support": {
  1116. "issues": "https://github.com/thephpleague/flysystem/issues",
  1117. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  1118. },
  1119. "funding": [
  1120. {
  1121. "url": "https://offset.earth/frankdejonge",
  1122. "type": "other"
  1123. }
  1124. ],
  1125. "install-path": "../league/flysystem"
  1126. },
  1127. {
  1128. "name": "league/flysystem-cached-adapter",
  1129. "version": "1.1.0",
  1130. "version_normalized": "1.1.0.0",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1134. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1139. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1140. "shasum": "",
  1141. "mirrors": [
  1142. {
  1143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1144. "preferred": true
  1145. }
  1146. ]
  1147. },
  1148. "require": {
  1149. "league/flysystem": "~1.0",
  1150. "psr/cache": "^1.0.0"
  1151. },
  1152. "require-dev": {
  1153. "mockery/mockery": "~0.9",
  1154. "phpspec/phpspec": "^3.4",
  1155. "phpunit/phpunit": "^5.7",
  1156. "predis/predis": "~1.0",
  1157. "tedivm/stash": "~0.12"
  1158. },
  1159. "suggest": {
  1160. "ext-phpredis": "Pure C implemented extension for PHP"
  1161. },
  1162. "time": "2020-07-25T15:56:04+00:00",
  1163. "type": "library",
  1164. "installation-source": "dist",
  1165. "autoload": {
  1166. "psr-4": {
  1167. "League\\Flysystem\\Cached\\": "src/"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "frankdejonge",
  1177. "email": "info@frenky.net"
  1178. }
  1179. ],
  1180. "description": "An adapter decorator to enable meta-data caching.",
  1181. "support": {
  1182. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  1183. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  1184. },
  1185. "install-path": "../league/flysystem-cached-adapter"
  1186. },
  1187. {
  1188. "name": "league/mime-type-detection",
  1189. "version": "1.7.0",
  1190. "version_normalized": "1.7.0.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1194. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1199. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  1200. "shasum": "",
  1201. "mirrors": [
  1202. {
  1203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1204. "preferred": true
  1205. }
  1206. ]
  1207. },
  1208. "require": {
  1209. "ext-fileinfo": "*",
  1210. "php": "^7.2 || ^8.0"
  1211. },
  1212. "require-dev": {
  1213. "friendsofphp/php-cs-fixer": "^2.18",
  1214. "phpstan/phpstan": "^0.12.68",
  1215. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1216. },
  1217. "time": "2021-01-18T20:58:21+00:00",
  1218. "type": "library",
  1219. "installation-source": "dist",
  1220. "autoload": {
  1221. "psr-4": {
  1222. "League\\MimeTypeDetection\\": "src"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Frank de Jonge",
  1232. "email": "info@frankdejonge.nl"
  1233. }
  1234. ],
  1235. "description": "Mime-type detection for Flysystem",
  1236. "support": {
  1237. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1238. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  1239. },
  1240. "funding": [
  1241. {
  1242. "url": "https://github.com/frankdejonge",
  1243. "type": "github"
  1244. },
  1245. {
  1246. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1247. "type": "tidelift"
  1248. }
  1249. ],
  1250. "install-path": "../league/mime-type-detection"
  1251. },
  1252. {
  1253. "name": "liliuwei/thinkphp-jump",
  1254. "version": "v1.5",
  1255. "version_normalized": "1.5.0.0",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/liliuwei/thinkphp-jump.git",
  1259. "reference": "481d41b922095f08230609919be5d19354c50540"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/liliuwei/thinkphp-jump/zipball/481d41b922095f08230609919be5d19354c50540",
  1264. "reference": "481d41b922095f08230609919be5d19354c50540",
  1265. "shasum": "",
  1266. "mirrors": [
  1267. {
  1268. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1269. "preferred": true
  1270. }
  1271. ]
  1272. },
  1273. "require": {
  1274. "php": ">=7.1.0",
  1275. "topthink/framework": "^6.0",
  1276. "topthink/think-view": "^1.0"
  1277. },
  1278. "time": "2020-03-20T15:11:56+00:00",
  1279. "type": "think-extend",
  1280. "extra": {
  1281. "think": {
  1282. "config": {
  1283. "jump": "src/config/jump.php"
  1284. }
  1285. }
  1286. },
  1287. "installation-source": "dist",
  1288. "autoload": {
  1289. "psr-4": {
  1290. "liliuwei\\think\\": "src/"
  1291. }
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "Apache-2.0"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "liliuwei",
  1300. "email": "974829947@qq.com"
  1301. }
  1302. ],
  1303. "description": "适用于thinkphp6.0的跳转扩展",
  1304. "keywords": [
  1305. "error",
  1306. "redirect",
  1307. "result",
  1308. "success",
  1309. "think-jump",
  1310. "thinkphp"
  1311. ],
  1312. "support": {
  1313. "issues": "https://github.com/liliuwei/thinkphp-jump/issues",
  1314. "source": "https://github.com/liliuwei/thinkphp-jump/tree/v1.5"
  1315. },
  1316. "install-path": "../liliuwei/thinkphp-jump"
  1317. },
  1318. {
  1319. "name": "maennchen/zipstream-php",
  1320. "version": "2.1.0",
  1321. "version_normalized": "2.1.0.0",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1325. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1330. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1331. "shasum": "",
  1332. "mirrors": [
  1333. {
  1334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1335. "preferred": true
  1336. }
  1337. ]
  1338. },
  1339. "require": {
  1340. "myclabs/php-enum": "^1.5",
  1341. "php": ">= 7.1",
  1342. "psr/http-message": "^1.0",
  1343. "symfony/polyfill-mbstring": "^1.0"
  1344. },
  1345. "require-dev": {
  1346. "ext-zip": "*",
  1347. "guzzlehttp/guzzle": ">= 6.3",
  1348. "mikey179/vfsstream": "^1.6",
  1349. "phpunit/phpunit": ">= 7.5"
  1350. },
  1351. "time": "2020-05-30T13:11:16+00:00",
  1352. "type": "library",
  1353. "installation-source": "dist",
  1354. "autoload": {
  1355. "psr-4": {
  1356. "ZipStream\\": "src/"
  1357. }
  1358. },
  1359. "notification-url": "https://packagist.org/downloads/",
  1360. "license": [
  1361. "MIT"
  1362. ],
  1363. "authors": [
  1364. {
  1365. "name": "Paul Duncan",
  1366. "email": "pabs@pablotron.org"
  1367. },
  1368. {
  1369. "name": "Jonatan Männchen",
  1370. "email": "jonatan@maennchen.ch"
  1371. },
  1372. {
  1373. "name": "Jesse Donat",
  1374. "email": "donatj@gmail.com"
  1375. },
  1376. {
  1377. "name": "András Kolesár",
  1378. "email": "kolesar@kolesar.hu"
  1379. }
  1380. ],
  1381. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1382. "keywords": [
  1383. "stream",
  1384. "zip"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1388. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  1389. },
  1390. "funding": [
  1391. {
  1392. "url": "https://opencollective.com/zipstream",
  1393. "type": "open_collective"
  1394. }
  1395. ],
  1396. "install-path": "../maennchen/zipstream-php"
  1397. },
  1398. {
  1399. "name": "markbaker/complex",
  1400. "version": "2.0.0",
  1401. "version_normalized": "2.0.0.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1405. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/9999f1432fae467bc93c53f357105b4c31bb994c",
  1410. "reference": "9999f1432fae467bc93c53f357105b4c31bb994c",
  1411. "shasum": "",
  1412. "mirrors": [
  1413. {
  1414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1415. "preferred": true
  1416. }
  1417. ]
  1418. },
  1419. "require": {
  1420. "php": "^7.2 || ^8.0"
  1421. },
  1422. "require-dev": {
  1423. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1424. "phpcompatibility/php-compatibility": "^9.0",
  1425. "phpdocumentor/phpdocumentor": "2.*",
  1426. "phploc/phploc": "^4.0",
  1427. "phpmd/phpmd": "2.*",
  1428. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1429. "sebastian/phpcpd": "^4.0",
  1430. "squizlabs/php_codesniffer": "^3.4"
  1431. },
  1432. "time": "2020-08-26T10:42:07+00:00",
  1433. "type": "library",
  1434. "installation-source": "dist",
  1435. "autoload": {
  1436. "psr-4": {
  1437. "Complex\\": "classes/src/"
  1438. },
  1439. "files": [
  1440. "classes/src/functions/abs.php",
  1441. "classes/src/functions/acos.php",
  1442. "classes/src/functions/acosh.php",
  1443. "classes/src/functions/acot.php",
  1444. "classes/src/functions/acoth.php",
  1445. "classes/src/functions/acsc.php",
  1446. "classes/src/functions/acsch.php",
  1447. "classes/src/functions/argument.php",
  1448. "classes/src/functions/asec.php",
  1449. "classes/src/functions/asech.php",
  1450. "classes/src/functions/asin.php",
  1451. "classes/src/functions/asinh.php",
  1452. "classes/src/functions/atan.php",
  1453. "classes/src/functions/atanh.php",
  1454. "classes/src/functions/conjugate.php",
  1455. "classes/src/functions/cos.php",
  1456. "classes/src/functions/cosh.php",
  1457. "classes/src/functions/cot.php",
  1458. "classes/src/functions/coth.php",
  1459. "classes/src/functions/csc.php",
  1460. "classes/src/functions/csch.php",
  1461. "classes/src/functions/exp.php",
  1462. "classes/src/functions/inverse.php",
  1463. "classes/src/functions/ln.php",
  1464. "classes/src/functions/log2.php",
  1465. "classes/src/functions/log10.php",
  1466. "classes/src/functions/negative.php",
  1467. "classes/src/functions/pow.php",
  1468. "classes/src/functions/rho.php",
  1469. "classes/src/functions/sec.php",
  1470. "classes/src/functions/sech.php",
  1471. "classes/src/functions/sin.php",
  1472. "classes/src/functions/sinh.php",
  1473. "classes/src/functions/sqrt.php",
  1474. "classes/src/functions/tan.php",
  1475. "classes/src/functions/tanh.php",
  1476. "classes/src/functions/theta.php",
  1477. "classes/src/operations/add.php",
  1478. "classes/src/operations/subtract.php",
  1479. "classes/src/operations/multiply.php",
  1480. "classes/src/operations/divideby.php",
  1481. "classes/src/operations/divideinto.php"
  1482. ]
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Mark Baker",
  1491. "email": "mark@lange.demon.co.uk"
  1492. }
  1493. ],
  1494. "description": "PHP Class for working with complex numbers",
  1495. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1496. "keywords": [
  1497. "complex",
  1498. "mathematics"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1502. "source": "https://github.com/MarkBaker/PHPComplex/tree/PHP8"
  1503. },
  1504. "install-path": "../markbaker/complex"
  1505. },
  1506. {
  1507. "name": "markbaker/matrix",
  1508. "version": "2.1.2",
  1509. "version_normalized": "2.1.2.0",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1513. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  1518. "reference": "361c0f545c3172ee26c3d596a0aa03f0cef65e6a",
  1519. "shasum": "",
  1520. "mirrors": [
  1521. {
  1522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1523. "preferred": true
  1524. }
  1525. ]
  1526. },
  1527. "require": {
  1528. "php": "^7.1 || ^8.0"
  1529. },
  1530. "require-dev": {
  1531. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1532. "phpcompatibility/php-compatibility": "^9.0",
  1533. "phpdocumentor/phpdocumentor": "2.*",
  1534. "phploc/phploc": "^4.0",
  1535. "phpmd/phpmd": "2.*",
  1536. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1537. "sebastian/phpcpd": "^4.0",
  1538. "squizlabs/php_codesniffer": "^3.4"
  1539. },
  1540. "time": "2021-01-23T16:37:31+00:00",
  1541. "type": "library",
  1542. "installation-source": "dist",
  1543. "autoload": {
  1544. "psr-4": {
  1545. "Matrix\\": "classes/src/"
  1546. },
  1547. "files": [
  1548. "classes/src/Functions/adjoint.php",
  1549. "classes/src/Functions/antidiagonal.php",
  1550. "classes/src/Functions/cofactors.php",
  1551. "classes/src/Functions/determinant.php",
  1552. "classes/src/Functions/diagonal.php",
  1553. "classes/src/Functions/identity.php",
  1554. "classes/src/Functions/inverse.php",
  1555. "classes/src/Functions/minors.php",
  1556. "classes/src/Functions/trace.php",
  1557. "classes/src/Functions/transpose.php",
  1558. "classes/src/Operations/add.php",
  1559. "classes/src/Operations/directsum.php",
  1560. "classes/src/Operations/subtract.php",
  1561. "classes/src/Operations/multiply.php",
  1562. "classes/src/Operations/divideby.php",
  1563. "classes/src/Operations/divideinto.php"
  1564. ]
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Mark Baker",
  1573. "email": "mark@demon-angel.eu"
  1574. }
  1575. ],
  1576. "description": "PHP Class for working with matrices",
  1577. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1578. "keywords": [
  1579. "mathematics",
  1580. "matrix",
  1581. "vector"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1585. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.2"
  1586. },
  1587. "install-path": "../markbaker/matrix"
  1588. },
  1589. {
  1590. "name": "monolog/monolog",
  1591. "version": "2.3.5",
  1592. "version_normalized": "2.3.5.0",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/Seldaek/monolog.git",
  1596. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd4380d6fc37626e2f799f29d91195040137eba9",
  1601. "reference": "fd4380d6fc37626e2f799f29d91195040137eba9",
  1602. "shasum": "",
  1603. "mirrors": [
  1604. {
  1605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1606. "preferred": true
  1607. }
  1608. ]
  1609. },
  1610. "require": {
  1611. "php": ">=7.2",
  1612. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1613. },
  1614. "provide": {
  1615. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1616. },
  1617. "require-dev": {
  1618. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1619. "doctrine/couchdb": "~1.0@dev",
  1620. "elasticsearch/elasticsearch": "^7",
  1621. "graylog2/gelf-php": "^1.4.2",
  1622. "mongodb/mongodb": "^1.8",
  1623. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1624. "php-console/php-console": "^3.1.3",
  1625. "phpspec/prophecy": "^1.6.1",
  1626. "phpstan/phpstan": "^0.12.91",
  1627. "phpunit/phpunit": "^8.5",
  1628. "predis/predis": "^1.1",
  1629. "rollbar/rollbar": "^1.3",
  1630. "ruflin/elastica": ">=0.90@dev",
  1631. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1632. },
  1633. "suggest": {
  1634. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1635. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1636. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1637. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1638. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1639. "ext-mbstring": "Allow to work properly with unicode symbols",
  1640. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1641. "ext-openssl": "Required to send log messages using SSL",
  1642. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1643. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1644. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1645. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1646. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1647. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1648. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1649. },
  1650. "time": "2021-10-01T21:08:31+00:00",
  1651. "type": "library",
  1652. "extra": {
  1653. "branch-alias": {
  1654. "dev-main": "2.x-dev"
  1655. }
  1656. },
  1657. "installation-source": "dist",
  1658. "autoload": {
  1659. "psr-4": {
  1660. "Monolog\\": "src/Monolog"
  1661. }
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Jordi Boggiano",
  1670. "email": "j.boggiano@seld.be",
  1671. "homepage": "https://seld.be"
  1672. }
  1673. ],
  1674. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1675. "homepage": "https://github.com/Seldaek/monolog",
  1676. "keywords": [
  1677. "log",
  1678. "logging",
  1679. "psr-3"
  1680. ],
  1681. "support": {
  1682. "issues": "https://github.com/Seldaek/monolog/issues",
  1683. "source": "https://github.com/Seldaek/monolog/tree/2.3.5"
  1684. },
  1685. "funding": [
  1686. {
  1687. "url": "https://github.com/Seldaek",
  1688. "type": "github"
  1689. },
  1690. {
  1691. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1692. "type": "tidelift"
  1693. }
  1694. ],
  1695. "install-path": "../monolog/monolog"
  1696. },
  1697. {
  1698. "name": "mtdowling/jmespath.php",
  1699. "version": "2.6.0",
  1700. "version_normalized": "2.6.0.0",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/jmespath/jmespath.php.git",
  1704. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb",
  1709. "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb",
  1710. "shasum": "",
  1711. "mirrors": [
  1712. {
  1713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1714. "preferred": true
  1715. }
  1716. ]
  1717. },
  1718. "require": {
  1719. "php": "^5.4 || ^7.0 || ^8.0",
  1720. "symfony/polyfill-mbstring": "^1.17"
  1721. },
  1722. "require-dev": {
  1723. "composer/xdebug-handler": "^1.4",
  1724. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1725. },
  1726. "time": "2020-07-31T21:01:56+00:00",
  1727. "bin": [
  1728. "bin/jp.php"
  1729. ],
  1730. "type": "library",
  1731. "extra": {
  1732. "branch-alias": {
  1733. "dev-master": "2.6-dev"
  1734. }
  1735. },
  1736. "installation-source": "dist",
  1737. "autoload": {
  1738. "psr-4": {
  1739. "JmesPath\\": "src/"
  1740. },
  1741. "files": [
  1742. "src/JmesPath.php"
  1743. ]
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Michael Dowling",
  1752. "email": "mtdowling@gmail.com",
  1753. "homepage": "https://github.com/mtdowling"
  1754. }
  1755. ],
  1756. "description": "Declaratively specify how to extract elements from a JSON document",
  1757. "keywords": [
  1758. "json",
  1759. "jsonpath"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1763. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.0"
  1764. },
  1765. "install-path": "../mtdowling/jmespath.php"
  1766. },
  1767. {
  1768. "name": "myclabs/php-enum",
  1769. "version": "1.7.7",
  1770. "version_normalized": "1.7.7.0",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/myclabs/php-enum.git",
  1774. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  1779. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  1780. "shasum": "",
  1781. "mirrors": [
  1782. {
  1783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1784. "preferred": true
  1785. }
  1786. ]
  1787. },
  1788. "require": {
  1789. "ext-json": "*",
  1790. "php": ">=7.1"
  1791. },
  1792. "require-dev": {
  1793. "phpunit/phpunit": "^7",
  1794. "squizlabs/php_codesniffer": "1.*",
  1795. "vimeo/psalm": "^3.8"
  1796. },
  1797. "time": "2020-11-14T18:14:52+00:00",
  1798. "type": "library",
  1799. "installation-source": "dist",
  1800. "autoload": {
  1801. "psr-4": {
  1802. "MyCLabs\\Enum\\": "src/"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "MIT"
  1808. ],
  1809. "authors": [
  1810. {
  1811. "name": "PHP Enum contributors",
  1812. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1813. }
  1814. ],
  1815. "description": "PHP Enum implementation",
  1816. "homepage": "http://github.com/myclabs/php-enum",
  1817. "keywords": [
  1818. "enum"
  1819. ],
  1820. "support": {
  1821. "issues": "https://github.com/myclabs/php-enum/issues",
  1822. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  1823. },
  1824. "funding": [
  1825. {
  1826. "url": "https://github.com/mnapoli",
  1827. "type": "github"
  1828. },
  1829. {
  1830. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1831. "type": "tidelift"
  1832. }
  1833. ],
  1834. "install-path": "../myclabs/php-enum"
  1835. },
  1836. {
  1837. "name": "phpmailer/phpmailer",
  1838. "version": "v6.5.0",
  1839. "version_normalized": "6.5.0.0",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1843. "reference": "e38888a75c070304ca5514197d4847a59a5c853f"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f",
  1848. "reference": "e38888a75c070304ca5514197d4847a59a5c853f",
  1849. "shasum": "",
  1850. "mirrors": [
  1851. {
  1852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1853. "preferred": true
  1854. }
  1855. ]
  1856. },
  1857. "require": {
  1858. "ext-ctype": "*",
  1859. "ext-filter": "*",
  1860. "ext-hash": "*",
  1861. "php": ">=5.5.0"
  1862. },
  1863. "require-dev": {
  1864. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1865. "doctrine/annotations": "^1.2",
  1866. "phpcompatibility/php-compatibility": "^9.3.5",
  1867. "roave/security-advisories": "dev-latest",
  1868. "squizlabs/php_codesniffer": "^3.5.6",
  1869. "yoast/phpunit-polyfills": "^0.2.0"
  1870. },
  1871. "suggest": {
  1872. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  1873. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1874. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1875. "psr/log": "For optional PSR-3 debug logging",
  1876. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1877. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1878. },
  1879. "time": "2020-11-25T15:24:57+00:00",
  1880. "type": "library",
  1881. "installation-source": "dist",
  1882. "autoload": {
  1883. "psr-4": {
  1884. "PHPMailer\\PHPMailer\\": "src/"
  1885. }
  1886. },
  1887. "notification-url": "https://packagist.org/downloads/",
  1888. "license": [
  1889. "LGPL-2.1-only"
  1890. ],
  1891. "authors": [
  1892. {
  1893. "name": "Marcus Bointon",
  1894. "email": "phpmailer@synchromedia.co.uk"
  1895. },
  1896. {
  1897. "name": "Jim Jagielski",
  1898. "email": "jimjag@gmail.com"
  1899. },
  1900. {
  1901. "name": "Andy Prevost",
  1902. "email": "codeworxtech@users.sourceforge.net"
  1903. },
  1904. {
  1905. "name": "Brent R. Matzelle"
  1906. }
  1907. ],
  1908. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1909. "support": {
  1910. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1911. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.2.0"
  1912. },
  1913. "funding": [
  1914. {
  1915. "url": "https://github.com/Synchro",
  1916. "type": "github"
  1917. }
  1918. ],
  1919. "install-path": "../phpmailer/phpmailer"
  1920. },
  1921. {
  1922. "name": "phpoffice/phpspreadsheet",
  1923. "version": "1.16.0",
  1924. "version_normalized": "1.16.0.0",
  1925. "source": {
  1926. "type": "git",
  1927. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1928. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50"
  1929. },
  1930. "dist": {
  1931. "type": "zip",
  1932. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/76d4323b85129d0c368149c831a07a3e258b2b50",
  1933. "reference": "76d4323b85129d0c368149c831a07a3e258b2b50",
  1934. "shasum": "",
  1935. "mirrors": [
  1936. {
  1937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1938. "preferred": true
  1939. }
  1940. ]
  1941. },
  1942. "require": {
  1943. "ext-ctype": "*",
  1944. "ext-dom": "*",
  1945. "ext-fileinfo": "*",
  1946. "ext-gd": "*",
  1947. "ext-iconv": "*",
  1948. "ext-libxml": "*",
  1949. "ext-mbstring": "*",
  1950. "ext-simplexml": "*",
  1951. "ext-xml": "*",
  1952. "ext-xmlreader": "*",
  1953. "ext-xmlwriter": "*",
  1954. "ext-zip": "*",
  1955. "ext-zlib": "*",
  1956. "ezyang/htmlpurifier": "^4.13",
  1957. "maennchen/zipstream-php": "^2.1",
  1958. "markbaker/complex": "^1.5||^2.0",
  1959. "markbaker/matrix": "^1.2||^2.0",
  1960. "php": "^7.2||^8.0",
  1961. "psr/http-client": "^1.0",
  1962. "psr/http-factory": "^1.0",
  1963. "psr/simple-cache": "^1.0"
  1964. },
  1965. "require-dev": {
  1966. "dompdf/dompdf": "^0.8.5",
  1967. "friendsofphp/php-cs-fixer": "^2.16",
  1968. "jpgraph/jpgraph": "^4.0",
  1969. "mpdf/mpdf": "^8.0",
  1970. "phpcompatibility/php-compatibility": "^9.3",
  1971. "phpunit/phpunit": "^8.5||^9.3",
  1972. "squizlabs/php_codesniffer": "^3.5",
  1973. "tecnickcom/tcpdf": "^6.3"
  1974. },
  1975. "suggest": {
  1976. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1977. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1978. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1979. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1980. },
  1981. "time": "2020-12-31T18:03:49+00:00",
  1982. "type": "library",
  1983. "installation-source": "dist",
  1984. "autoload": {
  1985. "psr-4": {
  1986. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "authors": [
  1994. {
  1995. "name": "Maarten Balliauw",
  1996. "homepage": "https://blog.maartenballiauw.be"
  1997. },
  1998. {
  1999. "name": "Mark Baker",
  2000. "homepage": "https://markbakeruk.net"
  2001. },
  2002. {
  2003. "name": "Franck Lefevre",
  2004. "homepage": "https://rootslabs.net"
  2005. },
  2006. {
  2007. "name": "Erik Tilt"
  2008. },
  2009. {
  2010. "name": "Adrien Crivelli"
  2011. }
  2012. ],
  2013. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2014. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2015. "keywords": [
  2016. "OpenXML",
  2017. "excel",
  2018. "gnumeric",
  2019. "ods",
  2020. "php",
  2021. "spreadsheet",
  2022. "xls",
  2023. "xlsx"
  2024. ],
  2025. "support": {
  2026. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2027. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.16.0"
  2028. },
  2029. "install-path": "../phpoffice/phpspreadsheet"
  2030. },
  2031. {
  2032. "name": "pimple/pimple",
  2033. "version": "v3.3.1",
  2034. "version_normalized": "3.3.1.0",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/silexphp/Pimple.git",
  2038. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  2043. "reference": "21e45061c3429b1e06233475cc0e1f6fc774d5b0",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "php": ">=7.2.5",
  2054. "psr/container": "^1.0"
  2055. },
  2056. "require-dev": {
  2057. "symfony/phpunit-bridge": "^5.0"
  2058. },
  2059. "time": "2020-11-24T20:35:42+00:00",
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-master": "3.3.x-dev"
  2064. }
  2065. },
  2066. "installation-source": "dist",
  2067. "autoload": {
  2068. "psr-0": {
  2069. "Pimple": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "Fabien Potencier",
  2079. "email": "fabien@symfony.com"
  2080. }
  2081. ],
  2082. "description": "Pimple, a simple Dependency Injection Container",
  2083. "homepage": "https://pimple.symfony.com",
  2084. "keywords": [
  2085. "container",
  2086. "dependency injection"
  2087. ],
  2088. "support": {
  2089. "source": "https://github.com/silexphp/Pimple/tree/v3.3.1"
  2090. },
  2091. "install-path": "../pimple/pimple"
  2092. },
  2093. {
  2094. "name": "psr/cache",
  2095. "version": "1.0.1",
  2096. "version_normalized": "1.0.1.0",
  2097. "source": {
  2098. "type": "git",
  2099. "url": "https://github.com/php-fig/cache.git",
  2100. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2101. },
  2102. "dist": {
  2103. "type": "zip",
  2104. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2105. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2106. "shasum": "",
  2107. "mirrors": [
  2108. {
  2109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2110. "preferred": true
  2111. }
  2112. ]
  2113. },
  2114. "require": {
  2115. "php": ">=5.3.0"
  2116. },
  2117. "time": "2016-08-06T20:24:11+00:00",
  2118. "type": "library",
  2119. "extra": {
  2120. "branch-alias": {
  2121. "dev-master": "1.0.x-dev"
  2122. }
  2123. },
  2124. "installation-source": "dist",
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Psr\\Cache\\": "src/"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "MIT"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "PHP-FIG",
  2137. "homepage": "http://www.php-fig.org/"
  2138. }
  2139. ],
  2140. "description": "Common interface for caching libraries",
  2141. "keywords": [
  2142. "cache",
  2143. "psr",
  2144. "psr-6"
  2145. ],
  2146. "support": {
  2147. "source": "https://github.com/php-fig/cache/tree/master"
  2148. },
  2149. "install-path": "../psr/cache"
  2150. },
  2151. {
  2152. "name": "psr/container",
  2153. "version": "1.0.0",
  2154. "version_normalized": "1.0.0.0",
  2155. "source": {
  2156. "type": "git",
  2157. "url": "https://github.com/php-fig/container.git",
  2158. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2159. },
  2160. "dist": {
  2161. "type": "zip",
  2162. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2163. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2164. "shasum": "",
  2165. "mirrors": [
  2166. {
  2167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2168. "preferred": true
  2169. }
  2170. ]
  2171. },
  2172. "require": {
  2173. "php": ">=5.3.0"
  2174. },
  2175. "time": "2017-02-14T16:28:37+00:00",
  2176. "type": "library",
  2177. "extra": {
  2178. "branch-alias": {
  2179. "dev-master": "1.0.x-dev"
  2180. }
  2181. },
  2182. "installation-source": "dist",
  2183. "autoload": {
  2184. "psr-4": {
  2185. "Psr\\Container\\": "src/"
  2186. }
  2187. },
  2188. "notification-url": "https://packagist.org/downloads/",
  2189. "license": [
  2190. "MIT"
  2191. ],
  2192. "authors": [
  2193. {
  2194. "name": "PHP-FIG",
  2195. "homepage": "http://www.php-fig.org/"
  2196. }
  2197. ],
  2198. "description": "Common Container Interface (PHP FIG PSR-11)",
  2199. "homepage": "https://github.com/php-fig/container",
  2200. "keywords": [
  2201. "PSR-11",
  2202. "container",
  2203. "container-interface",
  2204. "container-interop",
  2205. "psr"
  2206. ],
  2207. "support": {
  2208. "issues": "https://github.com/php-fig/container/issues",
  2209. "source": "https://github.com/php-fig/container/tree/master"
  2210. },
  2211. "install-path": "../psr/container"
  2212. },
  2213. {
  2214. "name": "psr/http-client",
  2215. "version": "1.0.1",
  2216. "version_normalized": "1.0.1.0",
  2217. "source": {
  2218. "type": "git",
  2219. "url": "https://github.com/php-fig/http-client.git",
  2220. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2221. },
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2225. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2226. "shasum": "",
  2227. "mirrors": [
  2228. {
  2229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2230. "preferred": true
  2231. }
  2232. ]
  2233. },
  2234. "require": {
  2235. "php": "^7.0 || ^8.0",
  2236. "psr/http-message": "^1.0"
  2237. },
  2238. "time": "2020-06-29T06:28:15+00:00",
  2239. "type": "library",
  2240. "extra": {
  2241. "branch-alias": {
  2242. "dev-master": "1.0.x-dev"
  2243. }
  2244. },
  2245. "installation-source": "dist",
  2246. "autoload": {
  2247. "psr-4": {
  2248. "Psr\\Http\\Client\\": "src/"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "authors": [
  2256. {
  2257. "name": "PHP-FIG",
  2258. "homepage": "http://www.php-fig.org/"
  2259. }
  2260. ],
  2261. "description": "Common interface for HTTP clients",
  2262. "homepage": "https://github.com/php-fig/http-client",
  2263. "keywords": [
  2264. "http",
  2265. "http-client",
  2266. "psr",
  2267. "psr-18"
  2268. ],
  2269. "support": {
  2270. "source": "https://github.com/php-fig/http-client/tree/master"
  2271. },
  2272. "install-path": "../psr/http-client"
  2273. },
  2274. {
  2275. "name": "psr/http-factory",
  2276. "version": "1.0.1",
  2277. "version_normalized": "1.0.1.0",
  2278. "source": {
  2279. "type": "git",
  2280. "url": "https://github.com/php-fig/http-factory.git",
  2281. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2282. },
  2283. "dist": {
  2284. "type": "zip",
  2285. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2286. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2287. "shasum": "",
  2288. "mirrors": [
  2289. {
  2290. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2291. "preferred": true
  2292. }
  2293. ]
  2294. },
  2295. "require": {
  2296. "php": ">=7.0.0",
  2297. "psr/http-message": "^1.0"
  2298. },
  2299. "time": "2019-04-30T12:38:16+00:00",
  2300. "type": "library",
  2301. "extra": {
  2302. "branch-alias": {
  2303. "dev-master": "1.0.x-dev"
  2304. }
  2305. },
  2306. "installation-source": "dist",
  2307. "autoload": {
  2308. "psr-4": {
  2309. "Psr\\Http\\Message\\": "src/"
  2310. }
  2311. },
  2312. "notification-url": "https://packagist.org/downloads/",
  2313. "license": [
  2314. "MIT"
  2315. ],
  2316. "authors": [
  2317. {
  2318. "name": "PHP-FIG",
  2319. "homepage": "http://www.php-fig.org/"
  2320. }
  2321. ],
  2322. "description": "Common interfaces for PSR-7 HTTP message factories",
  2323. "keywords": [
  2324. "factory",
  2325. "http",
  2326. "message",
  2327. "psr",
  2328. "psr-17",
  2329. "psr-7",
  2330. "request",
  2331. "response"
  2332. ],
  2333. "support": {
  2334. "source": "https://github.com/php-fig/http-factory/tree/master"
  2335. },
  2336. "install-path": "../psr/http-factory"
  2337. },
  2338. {
  2339. "name": "psr/http-message",
  2340. "version": "1.0.1",
  2341. "version_normalized": "1.0.1.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://github.com/php-fig/http-message.git",
  2345. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2350. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2351. "shasum": "",
  2352. "mirrors": [
  2353. {
  2354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2355. "preferred": true
  2356. }
  2357. ]
  2358. },
  2359. "require": {
  2360. "php": ">=5.3.0"
  2361. },
  2362. "time": "2016-08-06T14:39:51+00:00",
  2363. "type": "library",
  2364. "extra": {
  2365. "branch-alias": {
  2366. "dev-master": "1.0.x-dev"
  2367. }
  2368. },
  2369. "installation-source": "dist",
  2370. "autoload": {
  2371. "psr-4": {
  2372. "Psr\\Http\\Message\\": "src/"
  2373. }
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "MIT"
  2378. ],
  2379. "authors": [
  2380. {
  2381. "name": "PHP-FIG",
  2382. "homepage": "http://www.php-fig.org/"
  2383. }
  2384. ],
  2385. "description": "Common interface for HTTP messages",
  2386. "homepage": "https://github.com/php-fig/http-message",
  2387. "keywords": [
  2388. "http",
  2389. "http-message",
  2390. "psr",
  2391. "psr-7",
  2392. "request",
  2393. "response"
  2394. ],
  2395. "support": {
  2396. "source": "https://github.com/php-fig/http-message/tree/master"
  2397. },
  2398. "install-path": "../psr/http-message"
  2399. },
  2400. {
  2401. "name": "psr/log",
  2402. "version": "1.1.3",
  2403. "version_normalized": "1.1.3.0",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/php-fig/log.git",
  2407. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  2412. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  2413. "shasum": "",
  2414. "mirrors": [
  2415. {
  2416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2417. "preferred": true
  2418. }
  2419. ]
  2420. },
  2421. "require": {
  2422. "php": ">=5.3.0"
  2423. },
  2424. "time": "2020-03-23T09:12:05+00:00",
  2425. "type": "library",
  2426. "extra": {
  2427. "branch-alias": {
  2428. "dev-master": "1.1.x-dev"
  2429. }
  2430. },
  2431. "installation-source": "dist",
  2432. "autoload": {
  2433. "psr-4": {
  2434. "Psr\\Log\\": "Psr/Log/"
  2435. }
  2436. },
  2437. "notification-url": "https://packagist.org/downloads/",
  2438. "license": [
  2439. "MIT"
  2440. ],
  2441. "authors": [
  2442. {
  2443. "name": "PHP-FIG",
  2444. "homepage": "http://www.php-fig.org/"
  2445. }
  2446. ],
  2447. "description": "Common interface for logging libraries",
  2448. "homepage": "https://github.com/php-fig/log",
  2449. "keywords": [
  2450. "log",
  2451. "psr",
  2452. "psr-3"
  2453. ],
  2454. "support": {
  2455. "source": "https://github.com/php-fig/log/tree/1.1.3"
  2456. },
  2457. "install-path": "../psr/log"
  2458. },
  2459. {
  2460. "name": "psr/simple-cache",
  2461. "version": "1.0.1",
  2462. "version_normalized": "1.0.1.0",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/php-fig/simple-cache.git",
  2466. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2471. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2472. "shasum": "",
  2473. "mirrors": [
  2474. {
  2475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2476. "preferred": true
  2477. }
  2478. ]
  2479. },
  2480. "require": {
  2481. "php": ">=5.3.0"
  2482. },
  2483. "time": "2017-10-23T01:57:42+00:00",
  2484. "type": "library",
  2485. "extra": {
  2486. "branch-alias": {
  2487. "dev-master": "1.0.x-dev"
  2488. }
  2489. },
  2490. "installation-source": "dist",
  2491. "autoload": {
  2492. "psr-4": {
  2493. "Psr\\SimpleCache\\": "src/"
  2494. }
  2495. },
  2496. "notification-url": "https://packagist.org/downloads/",
  2497. "license": [
  2498. "MIT"
  2499. ],
  2500. "authors": [
  2501. {
  2502. "name": "PHP-FIG",
  2503. "homepage": "http://www.php-fig.org/"
  2504. }
  2505. ],
  2506. "description": "Common interfaces for simple caching",
  2507. "keywords": [
  2508. "cache",
  2509. "caching",
  2510. "psr",
  2511. "psr-16",
  2512. "simple-cache"
  2513. ],
  2514. "support": {
  2515. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2516. },
  2517. "install-path": "../psr/simple-cache"
  2518. },
  2519. {
  2520. "name": "ralouphie/getallheaders",
  2521. "version": "3.0.3",
  2522. "version_normalized": "3.0.3.0",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/ralouphie/getallheaders.git",
  2526. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2531. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2532. "shasum": "",
  2533. "mirrors": [
  2534. {
  2535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2536. "preferred": true
  2537. }
  2538. ]
  2539. },
  2540. "require": {
  2541. "php": ">=5.6"
  2542. },
  2543. "require-dev": {
  2544. "php-coveralls/php-coveralls": "^2.1",
  2545. "phpunit/phpunit": "^5 || ^6.5"
  2546. },
  2547. "time": "2019-03-08T08:55:37+00:00",
  2548. "type": "library",
  2549. "installation-source": "dist",
  2550. "autoload": {
  2551. "files": [
  2552. "src/getallheaders.php"
  2553. ]
  2554. },
  2555. "notification-url": "https://packagist.org/downloads/",
  2556. "license": [
  2557. "MIT"
  2558. ],
  2559. "authors": [
  2560. {
  2561. "name": "Ralph Khattar",
  2562. "email": "ralph.khattar@gmail.com"
  2563. }
  2564. ],
  2565. "description": "A polyfill for getallheaders.",
  2566. "support": {
  2567. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2568. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2569. },
  2570. "install-path": "../ralouphie/getallheaders"
  2571. },
  2572. {
  2573. "name": "songshenzong/support",
  2574. "version": "2.0.5",
  2575. "version_normalized": "2.0.5.0",
  2576. "source": {
  2577. "type": "git",
  2578. "url": "https://github.com/songshenzong/support.git",
  2579. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  2580. },
  2581. "dist": {
  2582. "type": "zip",
  2583. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  2584. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  2585. "shasum": "",
  2586. "mirrors": [
  2587. {
  2588. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2589. "preferred": true
  2590. }
  2591. ]
  2592. },
  2593. "require": {
  2594. "danielstjules/stringy": "^3.1",
  2595. "ext-json": "*",
  2596. "ext-simplexml": "*",
  2597. "ext-xml": "*",
  2598. "php": ">=5.5"
  2599. },
  2600. "require-dev": {
  2601. "laravel/framework": "^5.8",
  2602. "phpunit/phpunit": "^4.8.35|^5.4.3"
  2603. },
  2604. "time": "2019-08-29T01:59:12+00:00",
  2605. "type": "library",
  2606. "extra": {
  2607. "laravel": {
  2608. "providers": [
  2609. "Songshenzong\\Support\\StringsServiceProvider"
  2610. ],
  2611. "aliases": {
  2612. "Strings": "Songshenzong\\Support\\StringsFacade"
  2613. }
  2614. }
  2615. },
  2616. "installation-source": "dist",
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Songshenzong\\Support\\": "src/"
  2620. },
  2621. "files": [
  2622. "src/StringsHelpers.php",
  2623. "src/BashEchoHelpers.php"
  2624. ]
  2625. },
  2626. "notification-url": "https://packagist.org/downloads/",
  2627. "license": [
  2628. "MIT"
  2629. ],
  2630. "authors": [
  2631. {
  2632. "name": "Songshenzong",
  2633. "email": "i@songshenzong.com"
  2634. }
  2635. ],
  2636. "description": "The Songshenzong Support package.",
  2637. "homepage": "http://songshenzong.com",
  2638. "keywords": [
  2639. "laravel",
  2640. "support",
  2641. "tools",
  2642. "web"
  2643. ],
  2644. "support": {
  2645. "issues": "https://github.com/songshenzong/support/issues",
  2646. "source": "https://github.com/songshenzong/support"
  2647. },
  2648. "install-path": "../songshenzong/support"
  2649. },
  2650. {
  2651. "name": "symfony/cache",
  2652. "version": "v4.4.33",
  2653. "version_normalized": "4.4.33.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/symfony/cache.git",
  2657. "reference": "7342bf4f6f433cc1ee7fc6ec0a627951da5d92f5"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/symfony/cache/zipball/7342bf4f6f433cc1ee7fc6ec0a627951da5d92f5",
  2662. "reference": "7342bf4f6f433cc1ee7fc6ec0a627951da5d92f5",
  2663. "shasum": "",
  2664. "mirrors": [
  2665. {
  2666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2667. "preferred": true
  2668. }
  2669. ]
  2670. },
  2671. "require": {
  2672. "php": ">=7.1.3",
  2673. "psr/cache": "^1.0|^2.0",
  2674. "psr/log": "^1|^2|^3",
  2675. "symfony/cache-contracts": "^1.1.7|^2",
  2676. "symfony/polyfill-php73": "^1.9",
  2677. "symfony/polyfill-php80": "^1.16",
  2678. "symfony/service-contracts": "^1.1|^2",
  2679. "symfony/var-exporter": "^4.2|^5.0"
  2680. },
  2681. "conflict": {
  2682. "doctrine/dbal": "<2.7",
  2683. "symfony/dependency-injection": "<3.4",
  2684. "symfony/http-kernel": "<4.4|>=5.0",
  2685. "symfony/var-dumper": "<4.4"
  2686. },
  2687. "provide": {
  2688. "psr/cache-implementation": "1.0|2.0",
  2689. "psr/simple-cache-implementation": "1.0",
  2690. "symfony/cache-implementation": "1.0|2.0"
  2691. },
  2692. "require-dev": {
  2693. "cache/integration-tests": "dev-master",
  2694. "doctrine/cache": "^1.6|^2.0",
  2695. "doctrine/dbal": "^2.7|^3.0",
  2696. "predis/predis": "^1.1",
  2697. "psr/simple-cache": "^1.0",
  2698. "symfony/config": "^4.2|^5.0",
  2699. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  2700. "symfony/filesystem": "^4.4|^5.0",
  2701. "symfony/http-kernel": "^4.4",
  2702. "symfony/var-dumper": "^4.4|^5.0"
  2703. },
  2704. "time": "2021-10-25T16:36:08+00:00",
  2705. "type": "library",
  2706. "installation-source": "dist",
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Symfony\\Component\\Cache\\": ""
  2710. },
  2711. "exclude-from-classmap": [
  2712. "/Tests/"
  2713. ]
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "authors": [
  2720. {
  2721. "name": "Nicolas Grekas",
  2722. "email": "p@tchwork.com"
  2723. },
  2724. {
  2725. "name": "Symfony Community",
  2726. "homepage": "https://symfony.com/contributors"
  2727. }
  2728. ],
  2729. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  2730. "homepage": "https://symfony.com",
  2731. "keywords": [
  2732. "caching",
  2733. "psr6"
  2734. ],
  2735. "support": {
  2736. "source": "https://github.com/symfony/cache/tree/v4.4.33"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://symfony.com/sponsor",
  2741. "type": "custom"
  2742. },
  2743. {
  2744. "url": "https://github.com/fabpot",
  2745. "type": "github"
  2746. },
  2747. {
  2748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2749. "type": "tidelift"
  2750. }
  2751. ],
  2752. "install-path": "../symfony/cache"
  2753. },
  2754. {
  2755. "name": "symfony/cache-contracts",
  2756. "version": "v2.4.0",
  2757. "version_normalized": "2.4.0.0",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/symfony/cache-contracts.git",
  2761. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  2766. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  2767. "shasum": "",
  2768. "mirrors": [
  2769. {
  2770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2771. "preferred": true
  2772. }
  2773. ]
  2774. },
  2775. "require": {
  2776. "php": ">=7.2.5",
  2777. "psr/cache": "^1.0|^2.0|^3.0"
  2778. },
  2779. "suggest": {
  2780. "symfony/cache-implementation": ""
  2781. },
  2782. "time": "2021-03-23T23:28:01+00:00",
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-main": "2.4-dev"
  2787. },
  2788. "thanks": {
  2789. "name": "symfony/contracts",
  2790. "url": "https://github.com/symfony/contracts"
  2791. }
  2792. },
  2793. "installation-source": "dist",
  2794. "autoload": {
  2795. "psr-4": {
  2796. "Symfony\\Contracts\\Cache\\": ""
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Nicolas Grekas",
  2806. "email": "p@tchwork.com"
  2807. },
  2808. {
  2809. "name": "Symfony Community",
  2810. "homepage": "https://symfony.com/contributors"
  2811. }
  2812. ],
  2813. "description": "Generic abstractions related to caching",
  2814. "homepage": "https://symfony.com",
  2815. "keywords": [
  2816. "abstractions",
  2817. "contracts",
  2818. "decoupling",
  2819. "interfaces",
  2820. "interoperability",
  2821. "standards"
  2822. ],
  2823. "support": {
  2824. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  2825. },
  2826. "funding": [
  2827. {
  2828. "url": "https://symfony.com/sponsor",
  2829. "type": "custom"
  2830. },
  2831. {
  2832. "url": "https://github.com/fabpot",
  2833. "type": "github"
  2834. },
  2835. {
  2836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2837. "type": "tidelift"
  2838. }
  2839. ],
  2840. "install-path": "../symfony/cache-contracts"
  2841. },
  2842. {
  2843. "name": "symfony/deprecation-contracts",
  2844. "version": "v2.4.0",
  2845. "version_normalized": "2.4.0.0",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/symfony/deprecation-contracts.git",
  2849. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  2854. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  2855. "shasum": "",
  2856. "mirrors": [
  2857. {
  2858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2859. "preferred": true
  2860. }
  2861. ]
  2862. },
  2863. "require": {
  2864. "php": ">=7.1"
  2865. },
  2866. "time": "2021-03-23T23:28:01+00:00",
  2867. "type": "library",
  2868. "extra": {
  2869. "branch-alias": {
  2870. "dev-main": "2.4-dev"
  2871. },
  2872. "thanks": {
  2873. "name": "symfony/contracts",
  2874. "url": "https://github.com/symfony/contracts"
  2875. }
  2876. },
  2877. "installation-source": "dist",
  2878. "autoload": {
  2879. "files": [
  2880. "function.php"
  2881. ]
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "Nicolas Grekas",
  2890. "email": "p@tchwork.com"
  2891. },
  2892. {
  2893. "name": "Symfony Community",
  2894. "homepage": "https://symfony.com/contributors"
  2895. }
  2896. ],
  2897. "description": "A generic function and convention to trigger deprecation notices",
  2898. "homepage": "https://symfony.com",
  2899. "support": {
  2900. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  2901. },
  2902. "funding": [
  2903. {
  2904. "url": "https://symfony.com/sponsor",
  2905. "type": "custom"
  2906. },
  2907. {
  2908. "url": "https://github.com/fabpot",
  2909. "type": "github"
  2910. },
  2911. {
  2912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2913. "type": "tidelift"
  2914. }
  2915. ],
  2916. "install-path": "../symfony/deprecation-contracts"
  2917. },
  2918. {
  2919. "name": "symfony/http-foundation",
  2920. "version": "v5.3.10",
  2921. "version_normalized": "5.3.10.0",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/symfony/http-foundation.git",
  2925. "reference": "9f34f02e8a5fdc7a56bafe011cea1ce97300e54c"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9f34f02e8a5fdc7a56bafe011cea1ce97300e54c",
  2930. "reference": "9f34f02e8a5fdc7a56bafe011cea1ce97300e54c",
  2931. "shasum": "",
  2932. "mirrors": [
  2933. {
  2934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2935. "preferred": true
  2936. }
  2937. ]
  2938. },
  2939. "require": {
  2940. "php": ">=7.2.5",
  2941. "symfony/deprecation-contracts": "^2.1",
  2942. "symfony/polyfill-mbstring": "~1.1",
  2943. "symfony/polyfill-php80": "^1.16"
  2944. },
  2945. "require-dev": {
  2946. "predis/predis": "~1.0",
  2947. "symfony/cache": "^4.4|^5.0",
  2948. "symfony/expression-language": "^4.4|^5.0",
  2949. "symfony/mime": "^4.4|^5.0"
  2950. },
  2951. "suggest": {
  2952. "symfony/mime": "To use the file extension guesser"
  2953. },
  2954. "time": "2021-10-11T15:41:55+00:00",
  2955. "type": "library",
  2956. "installation-source": "dist",
  2957. "autoload": {
  2958. "psr-4": {
  2959. "Symfony\\Component\\HttpFoundation\\": ""
  2960. },
  2961. "exclude-from-classmap": [
  2962. "/Tests/"
  2963. ]
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "Fabien Potencier",
  2972. "email": "fabien@symfony.com"
  2973. },
  2974. {
  2975. "name": "Symfony Community",
  2976. "homepage": "https://symfony.com/contributors"
  2977. }
  2978. ],
  2979. "description": "Defines an object-oriented layer for the HTTP specification",
  2980. "homepage": "https://symfony.com",
  2981. "support": {
  2982. "source": "https://github.com/symfony/http-foundation/tree/v5.3.10"
  2983. },
  2984. "funding": [
  2985. {
  2986. "url": "https://symfony.com/sponsor",
  2987. "type": "custom"
  2988. },
  2989. {
  2990. "url": "https://github.com/fabpot",
  2991. "type": "github"
  2992. },
  2993. {
  2994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2995. "type": "tidelift"
  2996. }
  2997. ],
  2998. "install-path": "../symfony/http-foundation"
  2999. },
  3000. {
  3001. "name": "symfony/options-resolver",
  3002. "version": "v3.4.47",
  3003. "version_normalized": "3.4.47.0",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/symfony/options-resolver.git",
  3007. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  3012. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  3013. "shasum": "",
  3014. "mirrors": [
  3015. {
  3016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3017. "preferred": true
  3018. }
  3019. ]
  3020. },
  3021. "require": {
  3022. "php": "^5.5.9|>=7.0.8"
  3023. },
  3024. "time": "2020-10-24T10:57:07+00:00",
  3025. "type": "library",
  3026. "installation-source": "dist",
  3027. "autoload": {
  3028. "psr-4": {
  3029. "Symfony\\Component\\OptionsResolver\\": ""
  3030. },
  3031. "exclude-from-classmap": [
  3032. "/Tests/"
  3033. ]
  3034. },
  3035. "notification-url": "https://packagist.org/downloads/",
  3036. "license": [
  3037. "MIT"
  3038. ],
  3039. "authors": [
  3040. {
  3041. "name": "Fabien Potencier",
  3042. "email": "fabien@symfony.com"
  3043. },
  3044. {
  3045. "name": "Symfony Community",
  3046. "homepage": "https://symfony.com/contributors"
  3047. }
  3048. ],
  3049. "description": "Symfony OptionsResolver Component",
  3050. "homepage": "https://symfony.com",
  3051. "keywords": [
  3052. "config",
  3053. "configuration",
  3054. "options"
  3055. ],
  3056. "support": {
  3057. "source": "https://github.com/symfony/options-resolver/tree/v3.4.47"
  3058. },
  3059. "funding": [
  3060. {
  3061. "url": "https://symfony.com/sponsor",
  3062. "type": "custom"
  3063. },
  3064. {
  3065. "url": "https://github.com/fabpot",
  3066. "type": "github"
  3067. },
  3068. {
  3069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3070. "type": "tidelift"
  3071. }
  3072. ],
  3073. "install-path": "../symfony/options-resolver"
  3074. },
  3075. {
  3076. "name": "symfony/polyfill-mbstring",
  3077. "version": "v1.22.0",
  3078. "version_normalized": "1.22.0.0",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3082. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3087. "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13",
  3088. "shasum": "",
  3089. "mirrors": [
  3090. {
  3091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3092. "preferred": true
  3093. }
  3094. ]
  3095. },
  3096. "require": {
  3097. "php": ">=7.1"
  3098. },
  3099. "suggest": {
  3100. "ext-mbstring": "For best performance"
  3101. },
  3102. "time": "2021-01-07T16:49:33+00:00",
  3103. "type": "library",
  3104. "extra": {
  3105. "branch-alias": {
  3106. "dev-main": "1.22-dev"
  3107. },
  3108. "thanks": {
  3109. "name": "symfony/polyfill",
  3110. "url": "https://github.com/symfony/polyfill"
  3111. }
  3112. },
  3113. "installation-source": "dist",
  3114. "autoload": {
  3115. "psr-4": {
  3116. "Symfony\\Polyfill\\Mbstring\\": ""
  3117. },
  3118. "files": [
  3119. "bootstrap.php"
  3120. ]
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Nicolas Grekas",
  3129. "email": "p@tchwork.com"
  3130. },
  3131. {
  3132. "name": "Symfony Community",
  3133. "homepage": "https://symfony.com/contributors"
  3134. }
  3135. ],
  3136. "description": "Symfony polyfill for the Mbstring extension",
  3137. "homepage": "https://symfony.com",
  3138. "keywords": [
  3139. "compatibility",
  3140. "mbstring",
  3141. "polyfill",
  3142. "portable",
  3143. "shim"
  3144. ],
  3145. "support": {
  3146. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0"
  3147. },
  3148. "funding": [
  3149. {
  3150. "url": "https://symfony.com/sponsor",
  3151. "type": "custom"
  3152. },
  3153. {
  3154. "url": "https://github.com/fabpot",
  3155. "type": "github"
  3156. },
  3157. {
  3158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3159. "type": "tidelift"
  3160. }
  3161. ],
  3162. "install-path": "../symfony/polyfill-mbstring"
  3163. },
  3164. {
  3165. "name": "symfony/polyfill-php72",
  3166. "version": "v1.22.0",
  3167. "version_normalized": "1.22.0.0",
  3168. "source": {
  3169. "type": "git",
  3170. "url": "https://github.com/symfony/polyfill-php72.git",
  3171. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3172. },
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3176. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3177. "shasum": "",
  3178. "mirrors": [
  3179. {
  3180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3181. "preferred": true
  3182. }
  3183. ]
  3184. },
  3185. "require": {
  3186. "php": ">=7.1"
  3187. },
  3188. "time": "2021-01-07T16:49:33+00:00",
  3189. "type": "library",
  3190. "extra": {
  3191. "branch-alias": {
  3192. "dev-main": "1.22-dev"
  3193. },
  3194. "thanks": {
  3195. "name": "symfony/polyfill",
  3196. "url": "https://github.com/symfony/polyfill"
  3197. }
  3198. },
  3199. "installation-source": "dist",
  3200. "autoload": {
  3201. "psr-4": {
  3202. "Symfony\\Polyfill\\Php72\\": ""
  3203. },
  3204. "files": [
  3205. "bootstrap.php"
  3206. ]
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "MIT"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Nicolas Grekas",
  3215. "email": "p@tchwork.com"
  3216. },
  3217. {
  3218. "name": "Symfony Community",
  3219. "homepage": "https://symfony.com/contributors"
  3220. }
  3221. ],
  3222. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3223. "homepage": "https://symfony.com",
  3224. "keywords": [
  3225. "compatibility",
  3226. "polyfill",
  3227. "portable",
  3228. "shim"
  3229. ],
  3230. "support": {
  3231. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0"
  3232. },
  3233. "funding": [
  3234. {
  3235. "url": "https://symfony.com/sponsor",
  3236. "type": "custom"
  3237. },
  3238. {
  3239. "url": "https://github.com/fabpot",
  3240. "type": "github"
  3241. },
  3242. {
  3243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3244. "type": "tidelift"
  3245. }
  3246. ],
  3247. "install-path": "../symfony/polyfill-php72"
  3248. },
  3249. {
  3250. "name": "symfony/polyfill-php73",
  3251. "version": "v1.23.0",
  3252. "version_normalized": "1.23.0.0",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://github.com/symfony/polyfill-php73.git",
  3256. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  3257. },
  3258. "dist": {
  3259. "type": "zip",
  3260. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  3261. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  3262. "shasum": "",
  3263. "mirrors": [
  3264. {
  3265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3266. "preferred": true
  3267. }
  3268. ]
  3269. },
  3270. "require": {
  3271. "php": ">=7.1"
  3272. },
  3273. "time": "2021-02-19T12:13:01+00:00",
  3274. "type": "library",
  3275. "extra": {
  3276. "branch-alias": {
  3277. "dev-main": "1.23-dev"
  3278. },
  3279. "thanks": {
  3280. "name": "symfony/polyfill",
  3281. "url": "https://github.com/symfony/polyfill"
  3282. }
  3283. },
  3284. "installation-source": "dist",
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Symfony\\Polyfill\\Php73\\": ""
  3288. },
  3289. "files": [
  3290. "bootstrap.php"
  3291. ],
  3292. "classmap": [
  3293. "Resources/stubs"
  3294. ]
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Nicolas Grekas",
  3303. "email": "p@tchwork.com"
  3304. },
  3305. {
  3306. "name": "Symfony Community",
  3307. "homepage": "https://symfony.com/contributors"
  3308. }
  3309. ],
  3310. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  3311. "homepage": "https://symfony.com",
  3312. "keywords": [
  3313. "compatibility",
  3314. "polyfill",
  3315. "portable",
  3316. "shim"
  3317. ],
  3318. "support": {
  3319. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  3320. },
  3321. "funding": [
  3322. {
  3323. "url": "https://symfony.com/sponsor",
  3324. "type": "custom"
  3325. },
  3326. {
  3327. "url": "https://github.com/fabpot",
  3328. "type": "github"
  3329. },
  3330. {
  3331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3332. "type": "tidelift"
  3333. }
  3334. ],
  3335. "install-path": "../symfony/polyfill-php73"
  3336. },
  3337. {
  3338. "name": "symfony/polyfill-php80",
  3339. "version": "v1.22.0",
  3340. "version_normalized": "1.22.0.0",
  3341. "source": {
  3342. "type": "git",
  3343. "url": "https://github.com/symfony/polyfill-php80.git",
  3344. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  3345. },
  3346. "dist": {
  3347. "type": "zip",
  3348. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3349. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3350. "shasum": "",
  3351. "mirrors": [
  3352. {
  3353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3354. "preferred": true
  3355. }
  3356. ]
  3357. },
  3358. "require": {
  3359. "php": ">=7.1"
  3360. },
  3361. "time": "2021-01-07T16:49:33+00:00",
  3362. "type": "library",
  3363. "extra": {
  3364. "branch-alias": {
  3365. "dev-main": "1.22-dev"
  3366. },
  3367. "thanks": {
  3368. "name": "symfony/polyfill",
  3369. "url": "https://github.com/symfony/polyfill"
  3370. }
  3371. },
  3372. "installation-source": "dist",
  3373. "autoload": {
  3374. "psr-4": {
  3375. "Symfony\\Polyfill\\Php80\\": ""
  3376. },
  3377. "files": [
  3378. "bootstrap.php"
  3379. ],
  3380. "classmap": [
  3381. "Resources/stubs"
  3382. ]
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "MIT"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Ion Bazan",
  3391. "email": "ion.bazan@gmail.com"
  3392. },
  3393. {
  3394. "name": "Nicolas Grekas",
  3395. "email": "p@tchwork.com"
  3396. },
  3397. {
  3398. "name": "Symfony Community",
  3399. "homepage": "https://symfony.com/contributors"
  3400. }
  3401. ],
  3402. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3403. "homepage": "https://symfony.com",
  3404. "keywords": [
  3405. "compatibility",
  3406. "polyfill",
  3407. "portable",
  3408. "shim"
  3409. ],
  3410. "support": {
  3411. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0"
  3412. },
  3413. "funding": [
  3414. {
  3415. "url": "https://symfony.com/sponsor",
  3416. "type": "custom"
  3417. },
  3418. {
  3419. "url": "https://github.com/fabpot",
  3420. "type": "github"
  3421. },
  3422. {
  3423. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3424. "type": "tidelift"
  3425. }
  3426. ],
  3427. "install-path": "../symfony/polyfill-php80"
  3428. },
  3429. {
  3430. "name": "symfony/service-contracts",
  3431. "version": "v2.2.0",
  3432. "version_normalized": "2.2.0.0",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/symfony/service-contracts.git",
  3436. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3441. "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1",
  3442. "shasum": "",
  3443. "mirrors": [
  3444. {
  3445. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3446. "preferred": true
  3447. }
  3448. ]
  3449. },
  3450. "require": {
  3451. "php": ">=7.2.5",
  3452. "psr/container": "^1.0"
  3453. },
  3454. "suggest": {
  3455. "symfony/service-implementation": ""
  3456. },
  3457. "time": "2020-09-07T11:33:47+00:00",
  3458. "type": "library",
  3459. "extra": {
  3460. "branch-alias": {
  3461. "dev-master": "2.2-dev"
  3462. },
  3463. "thanks": {
  3464. "name": "symfony/contracts",
  3465. "url": "https://github.com/symfony/contracts"
  3466. }
  3467. },
  3468. "installation-source": "dist",
  3469. "autoload": {
  3470. "psr-4": {
  3471. "Symfony\\Contracts\\Service\\": ""
  3472. }
  3473. },
  3474. "notification-url": "https://packagist.org/downloads/",
  3475. "license": [
  3476. "MIT"
  3477. ],
  3478. "authors": [
  3479. {
  3480. "name": "Nicolas Grekas",
  3481. "email": "p@tchwork.com"
  3482. },
  3483. {
  3484. "name": "Symfony Community",
  3485. "homepage": "https://symfony.com/contributors"
  3486. }
  3487. ],
  3488. "description": "Generic abstractions related to writing services",
  3489. "homepage": "https://symfony.com",
  3490. "keywords": [
  3491. "abstractions",
  3492. "contracts",
  3493. "decoupling",
  3494. "interfaces",
  3495. "interoperability",
  3496. "standards"
  3497. ],
  3498. "support": {
  3499. "source": "https://github.com/symfony/service-contracts/tree/master"
  3500. },
  3501. "funding": [
  3502. {
  3503. "url": "https://symfony.com/sponsor",
  3504. "type": "custom"
  3505. },
  3506. {
  3507. "url": "https://github.com/fabpot",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3512. "type": "tidelift"
  3513. }
  3514. ],
  3515. "install-path": "../symfony/service-contracts"
  3516. },
  3517. {
  3518. "name": "symfony/var-dumper",
  3519. "version": "v4.4.19",
  3520. "version_normalized": "4.4.19.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/symfony/var-dumper.git",
  3524. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  3529. "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f",
  3530. "shasum": "",
  3531. "mirrors": [
  3532. {
  3533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3534. "preferred": true
  3535. }
  3536. ]
  3537. },
  3538. "require": {
  3539. "php": ">=7.1.3",
  3540. "symfony/polyfill-mbstring": "~1.0",
  3541. "symfony/polyfill-php72": "~1.5",
  3542. "symfony/polyfill-php80": "^1.15"
  3543. },
  3544. "conflict": {
  3545. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3546. "symfony/console": "<3.4"
  3547. },
  3548. "require-dev": {
  3549. "ext-iconv": "*",
  3550. "symfony/console": "^3.4|^4.0|^5.0",
  3551. "symfony/process": "^4.4|^5.0",
  3552. "twig/twig": "^1.43|^2.13|^3.0.4"
  3553. },
  3554. "suggest": {
  3555. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3556. "ext-intl": "To show region name in time zone dump",
  3557. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3558. },
  3559. "time": "2021-01-27T09:09:26+00:00",
  3560. "bin": [
  3561. "Resources/bin/var-dump-server"
  3562. ],
  3563. "type": "library",
  3564. "installation-source": "dist",
  3565. "autoload": {
  3566. "files": [
  3567. "Resources/functions/dump.php"
  3568. ],
  3569. "psr-4": {
  3570. "Symfony\\Component\\VarDumper\\": ""
  3571. },
  3572. "exclude-from-classmap": [
  3573. "/Tests/"
  3574. ]
  3575. },
  3576. "notification-url": "https://packagist.org/downloads/",
  3577. "license": [
  3578. "MIT"
  3579. ],
  3580. "authors": [
  3581. {
  3582. "name": "Nicolas Grekas",
  3583. "email": "p@tchwork.com"
  3584. },
  3585. {
  3586. "name": "Symfony Community",
  3587. "homepage": "https://symfony.com/contributors"
  3588. }
  3589. ],
  3590. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3591. "homepage": "https://symfony.com",
  3592. "keywords": [
  3593. "debug",
  3594. "dump"
  3595. ],
  3596. "support": {
  3597. "source": "https://github.com/symfony/var-dumper/tree/v4.4.19"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://symfony.com/sponsor",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://github.com/fabpot",
  3606. "type": "github"
  3607. },
  3608. {
  3609. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3610. "type": "tidelift"
  3611. }
  3612. ],
  3613. "install-path": "../symfony/var-dumper"
  3614. },
  3615. {
  3616. "name": "symfony/var-exporter",
  3617. "version": "v5.3.8",
  3618. "version_normalized": "5.3.8.0",
  3619. "source": {
  3620. "type": "git",
  3621. "url": "https://github.com/symfony/var-exporter.git",
  3622. "reference": "a7604de14bcf472fe8e33f758e9e5b7bf07d3b91"
  3623. },
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a7604de14bcf472fe8e33f758e9e5b7bf07d3b91",
  3627. "reference": "a7604de14bcf472fe8e33f758e9e5b7bf07d3b91",
  3628. "shasum": "",
  3629. "mirrors": [
  3630. {
  3631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3632. "preferred": true
  3633. }
  3634. ]
  3635. },
  3636. "require": {
  3637. "php": ">=7.2.5",
  3638. "symfony/polyfill-php80": "^1.16"
  3639. },
  3640. "require-dev": {
  3641. "symfony/var-dumper": "^4.4.9|^5.0.9"
  3642. },
  3643. "time": "2021-08-31T12:49:16+00:00",
  3644. "type": "library",
  3645. "installation-source": "dist",
  3646. "autoload": {
  3647. "psr-4": {
  3648. "Symfony\\Component\\VarExporter\\": ""
  3649. },
  3650. "exclude-from-classmap": [
  3651. "/Tests/"
  3652. ]
  3653. },
  3654. "notification-url": "https://packagist.org/downloads/",
  3655. "license": [
  3656. "MIT"
  3657. ],
  3658. "authors": [
  3659. {
  3660. "name": "Nicolas Grekas",
  3661. "email": "p@tchwork.com"
  3662. },
  3663. {
  3664. "name": "Symfony Community",
  3665. "homepage": "https://symfony.com/contributors"
  3666. }
  3667. ],
  3668. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3669. "homepage": "https://symfony.com",
  3670. "keywords": [
  3671. "clone",
  3672. "construct",
  3673. "export",
  3674. "hydrate",
  3675. "instantiate",
  3676. "serialize"
  3677. ],
  3678. "support": {
  3679. "source": "https://github.com/symfony/var-exporter/tree/v5.3.8"
  3680. },
  3681. "funding": [
  3682. {
  3683. "url": "https://symfony.com/sponsor",
  3684. "type": "custom"
  3685. },
  3686. {
  3687. "url": "https://github.com/fabpot",
  3688. "type": "github"
  3689. },
  3690. {
  3691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3692. "type": "tidelift"
  3693. }
  3694. ],
  3695. "install-path": "../symfony/var-exporter"
  3696. },
  3697. {
  3698. "name": "topthink/framework",
  3699. "version": "v6.0.7",
  3700. "version_normalized": "6.0.7.0",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/top-think/framework.git",
  3704. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/top-think/framework/zipball/db8fe22520a9660dd5e4c87e304034ac49e39270",
  3709. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270",
  3710. "shasum": "",
  3711. "mirrors": [
  3712. {
  3713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3714. "preferred": true
  3715. }
  3716. ]
  3717. },
  3718. "require": {
  3719. "ext-json": "*",
  3720. "ext-mbstring": "*",
  3721. "league/flysystem": "^1.0",
  3722. "league/flysystem-cached-adapter": "^1.0",
  3723. "php": ">=7.1.0",
  3724. "psr/container": "~1.0",
  3725. "psr/log": "~1.0",
  3726. "psr/simple-cache": "^1.0",
  3727. "topthink/think-helper": "^3.1.1",
  3728. "topthink/think-orm": "^2.0"
  3729. },
  3730. "require-dev": {
  3731. "mikey179/vfsstream": "^1.6",
  3732. "mockery/mockery": "^1.2",
  3733. "phpunit/phpunit": "^7.0"
  3734. },
  3735. "time": "2021-01-25T14:48:29+00:00",
  3736. "type": "library",
  3737. "installation-source": "dist",
  3738. "autoload": {
  3739. "files": [],
  3740. "psr-4": {
  3741. "think\\": "src/think/"
  3742. }
  3743. },
  3744. "notification-url": "https://packagist.org/downloads/",
  3745. "license": [
  3746. "Apache-2.0"
  3747. ],
  3748. "authors": [
  3749. {
  3750. "name": "liu21st",
  3751. "email": "liu21st@gmail.com"
  3752. },
  3753. {
  3754. "name": "yunwuxin",
  3755. "email": "448901948@qq.com"
  3756. }
  3757. ],
  3758. "description": "The ThinkPHP Framework.",
  3759. "homepage": "http://thinkphp.cn/",
  3760. "keywords": [
  3761. "framework",
  3762. "orm",
  3763. "thinkphp"
  3764. ],
  3765. "support": {
  3766. "issues": "https://github.com/top-think/framework/issues",
  3767. "source": "https://github.com/top-think/framework/tree/v6.0.7"
  3768. },
  3769. "install-path": "../topthink/framework"
  3770. },
  3771. {
  3772. "name": "topthink/think-captcha",
  3773. "version": "v3.0.3",
  3774. "version_normalized": "3.0.3.0",
  3775. "source": {
  3776. "type": "git",
  3777. "url": "https://github.com/top-think/think-captcha.git",
  3778. "reference": "1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55"
  3779. },
  3780. "dist": {
  3781. "type": "zip",
  3782. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55",
  3783. "reference": "1eef3717c1bcf4f5bbe2d1a1c704011d330a8b55",
  3784. "shasum": "",
  3785. "mirrors": [
  3786. {
  3787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3788. "preferred": true
  3789. }
  3790. ]
  3791. },
  3792. "require": {
  3793. "topthink/framework": "^6.0.0"
  3794. },
  3795. "time": "2020-05-19T10:55:45+00:00",
  3796. "type": "library",
  3797. "extra": {
  3798. "think": {
  3799. "services": [
  3800. "think\\captcha\\CaptchaService"
  3801. ],
  3802. "config": {
  3803. "captcha": "src/config.php"
  3804. }
  3805. }
  3806. },
  3807. "installation-source": "dist",
  3808. "autoload": {
  3809. "psr-4": {
  3810. "think\\captcha\\": "src/"
  3811. },
  3812. "files": [
  3813. "src/helper.php"
  3814. ]
  3815. },
  3816. "notification-url": "https://packagist.org/downloads/",
  3817. "license": [
  3818. "Apache-2.0"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "yunwuxin",
  3823. "email": "448901948@qq.com"
  3824. }
  3825. ],
  3826. "description": "captcha package for thinkphp",
  3827. "support": {
  3828. "issues": "https://github.com/top-think/think-captcha/issues",
  3829. "source": "https://github.com/top-think/think-captcha/tree/v3.0.3"
  3830. },
  3831. "install-path": "../topthink/think-captcha"
  3832. },
  3833. {
  3834. "name": "topthink/think-helper",
  3835. "version": "v3.1.4",
  3836. "version_normalized": "3.1.4.0",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/top-think/think-helper.git",
  3840. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/top-think/think-helper/zipball/c28d37743bda4a0455286ca85b17b5791d626e10",
  3845. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10",
  3846. "shasum": "",
  3847. "mirrors": [
  3848. {
  3849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3850. "preferred": true
  3851. }
  3852. ]
  3853. },
  3854. "require": {
  3855. "php": ">=7.1.0"
  3856. },
  3857. "time": "2019-11-08T08:01:10+00:00",
  3858. "type": "library",
  3859. "installation-source": "dist",
  3860. "autoload": {
  3861. "psr-4": {
  3862. "think\\": "src"
  3863. },
  3864. "files": [
  3865. "src/helper.php"
  3866. ]
  3867. },
  3868. "notification-url": "https://packagist.org/downloads/",
  3869. "license": [
  3870. "Apache-2.0"
  3871. ],
  3872. "authors": [
  3873. {
  3874. "name": "yunwuxin",
  3875. "email": "448901948@qq.com"
  3876. }
  3877. ],
  3878. "description": "The ThinkPHP6 Helper Package",
  3879. "support": {
  3880. "issues": "https://github.com/top-think/think-helper/issues",
  3881. "source": "https://github.com/top-think/think-helper/tree/3.0"
  3882. },
  3883. "install-path": "../topthink/think-helper"
  3884. },
  3885. {
  3886. "name": "topthink/think-image",
  3887. "version": "v1.0.7",
  3888. "version_normalized": "1.0.7.0",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/top-think/think-image.git",
  3892. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  3897. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  3898. "shasum": "",
  3899. "mirrors": [
  3900. {
  3901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3902. "preferred": true
  3903. }
  3904. ]
  3905. },
  3906. "require": {
  3907. "ext-gd": "*"
  3908. },
  3909. "require-dev": {
  3910. "phpunit/phpunit": "4.8.*",
  3911. "topthink/framework": "^5.0"
  3912. },
  3913. "time": "2016-09-29T06:05:43+00:00",
  3914. "type": "library",
  3915. "installation-source": "dist",
  3916. "autoload": {
  3917. "psr-4": {
  3918. "think\\": "src"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "Apache-2.0"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "yunwuxin",
  3928. "email": "448901948@qq.com"
  3929. }
  3930. ],
  3931. "description": "The ThinkPHP5 Image Package",
  3932. "support": {
  3933. "issues": "https://github.com/top-think/think-image/issues",
  3934. "source": "https://github.com/top-think/think-image/tree/master"
  3935. },
  3936. "install-path": "../topthink/think-image"
  3937. },
  3938. {
  3939. "name": "topthink/think-multi-app",
  3940. "version": "v1.0.14",
  3941. "version_normalized": "1.0.14.0",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/top-think/think-multi-app.git",
  3945. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  3950. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "php": ">=7.1.0",
  3961. "topthink/framework": "^6.0.0"
  3962. },
  3963. "time": "2020-07-12T13:50:37+00:00",
  3964. "type": "library",
  3965. "extra": {
  3966. "think": {
  3967. "services": [
  3968. "think\\app\\Service"
  3969. ]
  3970. }
  3971. },
  3972. "installation-source": "dist",
  3973. "autoload": {
  3974. "psr-4": {
  3975. "think\\app\\": "src"
  3976. }
  3977. },
  3978. "notification-url": "https://packagist.org/downloads/",
  3979. "license": [
  3980. "Apache-2.0"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "liu21st",
  3985. "email": "liu21st@gmail.com"
  3986. }
  3987. ],
  3988. "description": "thinkphp6 multi app support",
  3989. "support": {
  3990. "issues": "https://github.com/top-think/think-multi-app/issues",
  3991. "source": "https://github.com/top-think/think-multi-app/tree/master"
  3992. },
  3993. "install-path": "../topthink/think-multi-app"
  3994. },
  3995. {
  3996. "name": "topthink/think-orm",
  3997. "version": "v2.0.36",
  3998. "version_normalized": "2.0.36.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/top-think/think-orm.git",
  4002. "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/top-think/think-orm/zipball/f48dc09050f25029d41a66bfc9c3c403e4f82024",
  4007. "reference": "f48dc09050f25029d41a66bfc9c3c403e4f82024",
  4008. "shasum": "",
  4009. "mirrors": [
  4010. {
  4011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4012. "preferred": true
  4013. }
  4014. ]
  4015. },
  4016. "require": {
  4017. "ext-json": "*",
  4018. "php": ">=7.1.0",
  4019. "psr/log": "~1.0",
  4020. "psr/simple-cache": "^1.0",
  4021. "topthink/think-helper": "^3.1"
  4022. },
  4023. "time": "2021-01-12T09:08:52+00:00",
  4024. "type": "library",
  4025. "installation-source": "dist",
  4026. "autoload": {
  4027. "psr-4": {
  4028. "think\\": "src"
  4029. },
  4030. "files": []
  4031. },
  4032. "notification-url": "https://packagist.org/downloads/",
  4033. "license": [
  4034. "Apache-2.0"
  4035. ],
  4036. "authors": [
  4037. {
  4038. "name": "liu21st",
  4039. "email": "liu21st@gmail.com"
  4040. }
  4041. ],
  4042. "description": "think orm",
  4043. "keywords": [
  4044. "database",
  4045. "orm"
  4046. ],
  4047. "support": {
  4048. "issues": "https://github.com/top-think/think-orm/issues",
  4049. "source": "https://github.com/top-think/think-orm/tree/v2.0.36"
  4050. },
  4051. "install-path": "../topthink/think-orm"
  4052. },
  4053. {
  4054. "name": "topthink/think-template",
  4055. "version": "v2.0.8",
  4056. "version_normalized": "2.0.8.0",
  4057. "source": {
  4058. "type": "git",
  4059. "url": "https://github.com/top-think/think-template.git",
  4060. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  4061. },
  4062. "dist": {
  4063. "type": "zip",
  4064. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  4065. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  4066. "shasum": "",
  4067. "mirrors": [
  4068. {
  4069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4070. "preferred": true
  4071. }
  4072. ]
  4073. },
  4074. "require": {
  4075. "php": ">=7.1.0",
  4076. "psr/simple-cache": "^1.0"
  4077. },
  4078. "time": "2020-12-10T07:52:03+00:00",
  4079. "type": "library",
  4080. "installation-source": "dist",
  4081. "autoload": {
  4082. "psr-4": {
  4083. "think\\": "src"
  4084. }
  4085. },
  4086. "notification-url": "https://packagist.org/downloads/",
  4087. "license": [
  4088. "Apache-2.0"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "liu21st",
  4093. "email": "liu21st@gmail.com"
  4094. }
  4095. ],
  4096. "description": "the php template engine",
  4097. "support": {
  4098. "issues": "https://github.com/top-think/think-template/issues",
  4099. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  4100. },
  4101. "install-path": "../topthink/think-template"
  4102. },
  4103. {
  4104. "name": "topthink/think-trace",
  4105. "version": "v1.4",
  4106. "version_normalized": "1.4.0.0",
  4107. "source": {
  4108. "type": "git",
  4109. "url": "https://github.com/top-think/think-trace.git",
  4110. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  4111. },
  4112. "dist": {
  4113. "type": "zip",
  4114. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  4115. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  4116. "shasum": "",
  4117. "mirrors": [
  4118. {
  4119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4120. "preferred": true
  4121. }
  4122. ]
  4123. },
  4124. "require": {
  4125. "php": ">=7.1.0",
  4126. "topthink/framework": "^6.0.0"
  4127. },
  4128. "time": "2020-06-29T05:27:28+00:00",
  4129. "type": "library",
  4130. "extra": {
  4131. "think": {
  4132. "services": [
  4133. "think\\trace\\Service"
  4134. ],
  4135. "config": {
  4136. "trace": "src/config.php"
  4137. }
  4138. }
  4139. },
  4140. "installation-source": "dist",
  4141. "autoload": {
  4142. "psr-4": {
  4143. "think\\trace\\": "src"
  4144. }
  4145. },
  4146. "notification-url": "https://packagist.org/downloads/",
  4147. "license": [
  4148. "Apache-2.0"
  4149. ],
  4150. "authors": [
  4151. {
  4152. "name": "liu21st",
  4153. "email": "liu21st@gmail.com"
  4154. }
  4155. ],
  4156. "description": "thinkphp debug trace",
  4157. "support": {
  4158. "issues": "https://github.com/top-think/think-trace/issues",
  4159. "source": "https://github.com/top-think/think-trace/tree/v1.4"
  4160. },
  4161. "install-path": "../topthink/think-trace"
  4162. },
  4163. {
  4164. "name": "topthink/think-view",
  4165. "version": "v1.0.14",
  4166. "version_normalized": "1.0.14.0",
  4167. "source": {
  4168. "type": "git",
  4169. "url": "https://github.com/top-think/think-view.git",
  4170. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  4171. },
  4172. "dist": {
  4173. "type": "zip",
  4174. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4175. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  4176. "shasum": "",
  4177. "mirrors": [
  4178. {
  4179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4180. "preferred": true
  4181. }
  4182. ]
  4183. },
  4184. "require": {
  4185. "php": ">=7.1.0",
  4186. "topthink/think-template": "^2.0"
  4187. },
  4188. "time": "2019-11-06T11:40:13+00:00",
  4189. "type": "library",
  4190. "installation-source": "dist",
  4191. "autoload": {
  4192. "psr-4": {
  4193. "think\\view\\driver\\": "src"
  4194. }
  4195. },
  4196. "notification-url": "https://packagist.org/downloads/",
  4197. "license": [
  4198. "Apache-2.0"
  4199. ],
  4200. "authors": [
  4201. {
  4202. "name": "liu21st",
  4203. "email": "liu21st@gmail.com"
  4204. }
  4205. ],
  4206. "description": "thinkphp template driver",
  4207. "support": {
  4208. "issues": "https://github.com/top-think/think-view/issues",
  4209. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  4210. },
  4211. "install-path": "../topthink/think-view"
  4212. },
  4213. {
  4214. "name": "topthink/think-worker",
  4215. "version": "v3.0.5",
  4216. "version_normalized": "3.0.5.0",
  4217. "source": {
  4218. "type": "git",
  4219. "url": "https://github.com/top-think/think-worker.git",
  4220. "reference": "dc0ac655a0a2efda073ec18e67668bc02d17cabe"
  4221. },
  4222. "dist": {
  4223. "type": "zip",
  4224. "url": "https://api.github.com/repos/top-think/think-worker/zipball/dc0ac655a0a2efda073ec18e67668bc02d17cabe",
  4225. "reference": "dc0ac655a0a2efda073ec18e67668bc02d17cabe",
  4226. "shasum": "",
  4227. "mirrors": [
  4228. {
  4229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4230. "preferred": true
  4231. }
  4232. ]
  4233. },
  4234. "require": {
  4235. "ext-fileinfo": "*",
  4236. "topthink/framework": "^6.0.0",
  4237. "workerman/gateway-worker": "^3.0.0",
  4238. "workerman/workerman": "^3.5.23"
  4239. },
  4240. "time": "2020-04-30T13:39:47+00:00",
  4241. "type": "library",
  4242. "extra": {
  4243. "think": {
  4244. "services": [
  4245. "think\\worker\\Service"
  4246. ],
  4247. "config": {
  4248. "worker": "src/config/worker.php",
  4249. "worker_server": "src/config/server.php",
  4250. "gateway_worker": "src/config/gateway.php"
  4251. }
  4252. }
  4253. },
  4254. "installation-source": "dist",
  4255. "autoload": {
  4256. "psr-4": {
  4257. "think\\worker\\": "src"
  4258. }
  4259. },
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "Apache-2.0"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "liu21st",
  4267. "email": "liu21st@gmail.com"
  4268. }
  4269. ],
  4270. "description": "workerman extend for thinkphp6.0",
  4271. "support": {
  4272. "issues": "https://github.com/top-think/think-worker/issues",
  4273. "source": "https://github.com/top-think/think-worker/tree/3.0"
  4274. },
  4275. "install-path": "../topthink/think-worker"
  4276. },
  4277. {
  4278. "name": "workerman/gateway-worker",
  4279. "version": "v3.0.19",
  4280. "version_normalized": "3.0.19.0",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/walkor/GatewayWorker.git",
  4284. "reference": "720cb0f23c3ae5f0143b3457901e177dd3d54387"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/720cb0f23c3ae5f0143b3457901e177dd3d54387",
  4289. "reference": "720cb0f23c3ae5f0143b3457901e177dd3d54387",
  4290. "shasum": "",
  4291. "mirrors": [
  4292. {
  4293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4294. "preferred": true
  4295. }
  4296. ]
  4297. },
  4298. "require": {
  4299. "workerman/workerman": ">=3.5.0"
  4300. },
  4301. "time": "2021-01-25T03:01:01+00:00",
  4302. "type": "library",
  4303. "installation-source": "dist",
  4304. "autoload": {
  4305. "psr-4": {
  4306. "GatewayWorker\\": "./src"
  4307. }
  4308. },
  4309. "notification-url": "https://packagist.org/downloads/",
  4310. "license": [
  4311. "MIT"
  4312. ],
  4313. "homepage": "http://www.workerman.net",
  4314. "keywords": [
  4315. "communication",
  4316. "distributed"
  4317. ],
  4318. "support": {
  4319. "issues": "https://github.com/walkor/GatewayWorker/issues",
  4320. "source": "https://github.com/walkor/GatewayWorker/tree/v3.0.19"
  4321. },
  4322. "install-path": "../workerman/gateway-worker"
  4323. },
  4324. {
  4325. "name": "workerman/workerman",
  4326. "version": "v3.5.31",
  4327. "version_normalized": "3.5.31.0",
  4328. "source": {
  4329. "type": "git",
  4330. "url": "https://github.com/walkor/Workerman.git",
  4331. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96"
  4332. },
  4333. "dist": {
  4334. "type": "zip",
  4335. "url": "https://api.github.com/repos/walkor/Workerman/zipball/b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4336. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  4337. "shasum": "",
  4338. "mirrors": [
  4339. {
  4340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4341. "preferred": true
  4342. }
  4343. ]
  4344. },
  4345. "require": {
  4346. "php": ">=5.3"
  4347. },
  4348. "suggest": {
  4349. "ext-event": "For better performance. "
  4350. },
  4351. "time": "2020-08-24T03:49:23+00:00",
  4352. "type": "library",
  4353. "installation-source": "dist",
  4354. "autoload": {
  4355. "psr-4": {
  4356. "Workerman\\": "./"
  4357. }
  4358. },
  4359. "notification-url": "https://packagist.org/downloads/",
  4360. "license": [
  4361. "MIT"
  4362. ],
  4363. "authors": [
  4364. {
  4365. "name": "walkor",
  4366. "email": "walkor@workerman.net",
  4367. "homepage": "http://www.workerman.net",
  4368. "role": "Developer"
  4369. }
  4370. ],
  4371. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  4372. "homepage": "http://www.workerman.net",
  4373. "keywords": [
  4374. "asynchronous",
  4375. "event-loop"
  4376. ],
  4377. "support": {
  4378. "email": "walkor@workerman.net",
  4379. "forum": "http://wenda.workerman.net/",
  4380. "issues": "https://github.com/walkor/workerman/issues",
  4381. "source": "https://github.com/walkor/workerman",
  4382. "wiki": "http://doc.workerman.net/"
  4383. },
  4384. "install-path": "../workerman/workerman"
  4385. },
  4386. {
  4387. "name": "xin/container",
  4388. "version": "2.0.1",
  4389. "version_normalized": "2.0.1.0",
  4390. "source": {
  4391. "type": "git",
  4392. "url": "https://gitee.com/liuxiaojinla/php-container",
  4393. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  4394. },
  4395. "require": {
  4396. "ext-ctype": "*",
  4397. "ext-iconv": "*",
  4398. "ext-json": "*",
  4399. "ext-libxml": "*",
  4400. "ext-mbstring": "*",
  4401. "ext-openssl": "*",
  4402. "ext-simplexml": "*",
  4403. "psr/container": "^1.0",
  4404. "xin/helper": "^1.0"
  4405. },
  4406. "time": "2019-10-21T03:51:25+00:00",
  4407. "type": "library",
  4408. "installation-source": "source",
  4409. "autoload": {
  4410. "psr-4": {
  4411. "xin\\container\\": "src/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "Apache-2.0"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "晋",
  4421. "email": "657306123@qq.com"
  4422. }
  4423. ],
  4424. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  4425. "install-path": "../xin/container"
  4426. },
  4427. {
  4428. "name": "xin/helper",
  4429. "version": "1.0.0",
  4430. "version_normalized": "1.0.0.0",
  4431. "source": {
  4432. "type": "git",
  4433. "url": "https://gitee.com/liuxiaojinla/php-helper",
  4434. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  4435. },
  4436. "require": {
  4437. "ext-ctype": "*",
  4438. "ext-iconv": "*",
  4439. "ext-json": "*",
  4440. "ext-libxml": "*",
  4441. "ext-mbstring": "*",
  4442. "ext-openssl": "*",
  4443. "ext-simplexml": "*"
  4444. },
  4445. "time": "2019-06-22T08:28:23+00:00",
  4446. "type": "library",
  4447. "installation-source": "source",
  4448. "autoload": {
  4449. "psr-4": {
  4450. "xin\\helper\\": "src/"
  4451. }
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "Apache-2.0"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "晋",
  4460. "email": "1540175452@qq.com"
  4461. }
  4462. ],
  4463. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  4464. "install-path": "../xin/helper"
  4465. },
  4466. {
  4467. "name": "xzncit/developer-tools",
  4468. "version": "0.5.2",
  4469. "version_normalized": "0.5.2.0",
  4470. "source": {
  4471. "type": "git",
  4472. "url": "https://github.com/xzncit/developer-tools.git",
  4473. "reference": "d96706bd640d0acaecbdfd4d1450649427b30af3"
  4474. },
  4475. "dist": {
  4476. "type": "zip",
  4477. "url": "https://api.github.com/repos/xzncit/developer-tools/zipball/d96706bd640d0acaecbdfd4d1450649427b30af3",
  4478. "reference": "d96706bd640d0acaecbdfd4d1450649427b30af3",
  4479. "shasum": ""
  4480. },
  4481. "require": {
  4482. "alibabacloud/client": "^1.5",
  4483. "ext-fileinfo": "*",
  4484. "ext-simplexml": "*",
  4485. "guzzlehttp/guzzle": "^7.0",
  4486. "monolog/monolog": "^2.0",
  4487. "php": ">=7.2.5",
  4488. "pimple/pimple": "^3.0",
  4489. "symfony/cache": "^4.4",
  4490. "symfony/http-foundation": "^5.0"
  4491. },
  4492. "require-dev": {
  4493. "symfony/var-dumper": "^4.2"
  4494. },
  4495. "time": "2022-08-09T01:55:33+00:00",
  4496. "type": "library",
  4497. "installation-source": "dist",
  4498. "autoload": {
  4499. "files": [
  4500. "src/helper.php"
  4501. ],
  4502. "psr-4": {
  4503. "xzncit\\": "src/"
  4504. }
  4505. },
  4506. "notification-url": "https://packagist.org/downloads/",
  4507. "license": [
  4508. "GPL-3.0"
  4509. ],
  4510. "authors": [
  4511. {
  4512. "name": "xzncit",
  4513. "email": "158373108@qq.com"
  4514. }
  4515. ],
  4516. "description": "PHP Development Framework",
  4517. "homepage": "http://www.a3-mall.com/",
  4518. "keywords": [
  4519. "framework",
  4520. "miniprogram",
  4521. "sdk",
  4522. "wechat",
  4523. "weixin"
  4524. ],
  4525. "support": {
  4526. "issues": "https://github.com/xzncit/developer-tools/issues",
  4527. "source": "https://github.com/xzncit/developer-tools/tree/0.5.2"
  4528. },
  4529. "install-path": "../xzncit/developer-tools"
  4530. }
  4531. ],
  4532. "dev": true
  4533. }