installed.json 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100
  1. [
  2. {
  3. "name": "aliyuncs/oss-sdk-php",
  4. "version": "v2.3.1",
  5. "version_normalized": "2.3.1.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  9. "reference": "053d7ba9e798e4c09b9c5c1edab153d25ea9643a"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/053d7ba9e798e4c09b9c5c1edab153d25ea9643a",
  14. "reference": "053d7ba9e798e4c09b9c5c1edab153d25ea9643a",
  15. "shasum": "",
  16. "mirrors": [
  17. {
  18. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  19. "preferred": true
  20. }
  21. ]
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "~4.0",
  28. "satooshi/php-coveralls": "~1.0"
  29. },
  30. "time": "2019-11-15T11:05:42+00:00",
  31. "type": "library",
  32. "installation-source": "dist",
  33. "autoload": {
  34. "psr-4": {
  35. "OSS\\": "src/OSS"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Aliyuncs",
  45. "homepage": "http://www.aliyun.com"
  46. }
  47. ],
  48. "description": "Aliyun OSS SDK for PHP",
  49. "homepage": "http://www.aliyun.com/product/oss/"
  50. },
  51. {
  52. "name": "bacon/bacon-qr-code",
  53. "version": "2.0.0",
  54. "version_normalized": "2.0.0.0",
  55. "source": {
  56. "type": "git",
  57. "url": "https://github.com/Bacon/BaconQrCode.git",
  58. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0"
  59. },
  60. "dist": {
  61. "type": "zip",
  62. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/eaac909da3ccc32b748a65b127acd8918f58d9b0",
  63. "reference": "eaac909da3ccc32b748a65b127acd8918f58d9b0",
  64. "shasum": "",
  65. "mirrors": [
  66. {
  67. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  68. "preferred": true
  69. }
  70. ]
  71. },
  72. "require": {
  73. "dasprid/enum": "^1.0",
  74. "ext-iconv": "*",
  75. "php": "^7.1"
  76. },
  77. "require-dev": {
  78. "phly/keep-a-changelog": "^1.4",
  79. "phpunit/phpunit": "^6.4",
  80. "squizlabs/php_codesniffer": "^3.1"
  81. },
  82. "suggest": {
  83. "ext-imagick": "to generate QR code images"
  84. },
  85. "time": "2018-04-25T17:53:56+00:00",
  86. "type": "library",
  87. "installation-source": "dist",
  88. "autoload": {
  89. "psr-4": {
  90. "BaconQrCode\\": "src/"
  91. }
  92. },
  93. "notification-url": "https://packagist.org/downloads/",
  94. "license": [
  95. "BSD-2-Clause"
  96. ],
  97. "authors": [
  98. {
  99. "name": "Ben Scholzen 'DASPRiD'",
  100. "email": "mail@dasprids.de",
  101. "homepage": "http://www.dasprids.de",
  102. "role": "Developer"
  103. }
  104. ],
  105. "description": "BaconQrCode is a QR code generator for PHP.",
  106. "homepage": "https://github.com/Bacon/BaconQrCode"
  107. },
  108. {
  109. "name": "dasprid/enum",
  110. "version": "1.0.0",
  111. "version_normalized": "1.0.0.0",
  112. "source": {
  113. "type": "git",
  114. "url": "https://github.com/DASPRiD/Enum.git",
  115. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b"
  116. },
  117. "dist": {
  118. "type": "zip",
  119. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/631ef6e638e9494b0310837fa531bedd908fc22b",
  120. "reference": "631ef6e638e9494b0310837fa531bedd908fc22b",
  121. "shasum": "",
  122. "mirrors": [
  123. {
  124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  125. "preferred": true
  126. }
  127. ]
  128. },
  129. "require-dev": {
  130. "phpunit/phpunit": "^6.4",
  131. "squizlabs/php_codesniffer": "^3.1"
  132. },
  133. "time": "2017-10-25T22:45:27+00:00",
  134. "type": "library",
  135. "installation-source": "dist",
  136. "autoload": {
  137. "psr-4": {
  138. "DASPRiD\\Enum\\": "src/"
  139. }
  140. },
  141. "notification-url": "https://packagist.org/downloads/",
  142. "license": [
  143. "BSD-2-Clause"
  144. ],
  145. "authors": [
  146. {
  147. "name": "Ben Scholzen 'DASPRiD'",
  148. "email": "mail@dasprids.de",
  149. "homepage": "https://dasprids.de/"
  150. }
  151. ],
  152. "description": "PHP 7.1 enum implementation",
  153. "keywords": [
  154. "enum",
  155. "map"
  156. ]
  157. },
  158. {
  159. "name": "doctrine/annotations",
  160. "version": "v1.2.7",
  161. "version_normalized": "1.2.7.0",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/doctrine/annotations.git",
  165. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/doctrine/annotations/zipball/f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  170. "reference": "f25c8aab83e0c3e976fd7d19875f198ccf2f7535",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "doctrine/lexer": "1.*",
  181. "php": ">=5.3.2"
  182. },
  183. "require-dev": {
  184. "doctrine/cache": "1.*",
  185. "phpunit/phpunit": "4.*"
  186. },
  187. "time": "2015-08-31T12:32:49+00:00",
  188. "type": "library",
  189. "extra": {
  190. "branch-alias": {
  191. "dev-master": "1.3.x-dev"
  192. }
  193. },
  194. "installation-source": "dist",
  195. "autoload": {
  196. "psr-0": {
  197. "Doctrine\\Common\\Annotations\\": "lib/"
  198. }
  199. },
  200. "notification-url": "https://packagist.org/downloads/",
  201. "license": [
  202. "MIT"
  203. ],
  204. "authors": [
  205. {
  206. "name": "Roman Borschel",
  207. "email": "roman@code-factory.org"
  208. },
  209. {
  210. "name": "Benjamin Eberlei",
  211. "email": "kontakt@beberlei.de"
  212. },
  213. {
  214. "name": "Guilherme Blanco",
  215. "email": "guilhermeblanco@gmail.com"
  216. },
  217. {
  218. "name": "Jonathan Wage",
  219. "email": "jonwage@gmail.com"
  220. },
  221. {
  222. "name": "Johannes Schmitt",
  223. "email": "schmittjoh@gmail.com"
  224. }
  225. ],
  226. "description": "Docblock Annotations Parser",
  227. "homepage": "http://www.doctrine-project.org",
  228. "keywords": [
  229. "annotations",
  230. "docblock",
  231. "parser"
  232. ]
  233. },
  234. {
  235. "name": "doctrine/cache",
  236. "version": "v1.4.4",
  237. "version_normalized": "1.4.4.0",
  238. "source": {
  239. "type": "git",
  240. "url": "https://github.com/doctrine/cache.git",
  241. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  242. },
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  246. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  247. "shasum": "",
  248. "mirrors": [
  249. {
  250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  251. "preferred": true
  252. }
  253. ]
  254. },
  255. "require": {
  256. "php": ">=5.3.2"
  257. },
  258. "conflict": {
  259. "doctrine/common": ">2.2,<2.4"
  260. },
  261. "require-dev": {
  262. "phpunit/phpunit": ">=3.7",
  263. "predis/predis": "~1.0",
  264. "satooshi/php-coveralls": "~0.6"
  265. },
  266. "time": "2015-11-02T18:33:51+00:00",
  267. "type": "library",
  268. "extra": {
  269. "branch-alias": {
  270. "dev-master": "1.5.x-dev"
  271. }
  272. },
  273. "installation-source": "dist",
  274. "autoload": {
  275. "psr-0": {
  276. "Doctrine\\Common\\Cache\\": "lib/"
  277. }
  278. },
  279. "notification-url": "https://packagist.org/downloads/",
  280. "license": [
  281. "MIT"
  282. ],
  283. "authors": [
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Benjamin Eberlei",
  290. "email": "kontakt@beberlei.de"
  291. },
  292. {
  293. "name": "Guilherme Blanco",
  294. "email": "guilhermeblanco@gmail.com"
  295. },
  296. {
  297. "name": "Jonathan Wage",
  298. "email": "jonwage@gmail.com"
  299. },
  300. {
  301. "name": "Johannes Schmitt",
  302. "email": "schmittjoh@gmail.com"
  303. }
  304. ],
  305. "description": "Caching library offering an object-oriented API for many cache backends",
  306. "homepage": "http://www.doctrine-project.org",
  307. "keywords": [
  308. "cache",
  309. "caching"
  310. ]
  311. },
  312. {
  313. "name": "doctrine/lexer",
  314. "version": "1.2.0",
  315. "version_normalized": "1.2.0.0",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/doctrine/lexer.git",
  319. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  324. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  325. "shasum": "",
  326. "mirrors": [
  327. {
  328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  329. "preferred": true
  330. }
  331. ]
  332. },
  333. "require": {
  334. "php": "^7.2"
  335. },
  336. "require-dev": {
  337. "doctrine/coding-standard": "^6.0",
  338. "phpstan/phpstan": "^0.11.8",
  339. "phpunit/phpunit": "^8.2"
  340. },
  341. "time": "2019-10-30T14:39:59+00:00",
  342. "type": "library",
  343. "extra": {
  344. "branch-alias": {
  345. "dev-master": "1.2.x-dev"
  346. }
  347. },
  348. "installation-source": "dist",
  349. "autoload": {
  350. "psr-4": {
  351. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  352. }
  353. },
  354. "notification-url": "https://packagist.org/downloads/",
  355. "license": [
  356. "MIT"
  357. ],
  358. "authors": [
  359. {
  360. "name": "Guilherme Blanco",
  361. "email": "guilhermeblanco@gmail.com"
  362. },
  363. {
  364. "name": "Roman Borschel",
  365. "email": "roman@code-factory.org"
  366. },
  367. {
  368. "name": "Johannes Schmitt",
  369. "email": "schmittjoh@gmail.com"
  370. }
  371. ],
  372. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  373. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  374. "keywords": [
  375. "annotations",
  376. "docblock",
  377. "lexer",
  378. "parser",
  379. "php"
  380. ]
  381. },
  382. {
  383. "name": "endroid/qr-code",
  384. "version": "3.8.1",
  385. "version_normalized": "3.8.1.0",
  386. "source": {
  387. "type": "git",
  388. "url": "https://github.com/endroid/qr-code.git",
  389. "reference": "a7e07d26fad46d7032b39a076f6c85e07757028d"
  390. },
  391. "dist": {
  392. "type": "zip",
  393. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a7e07d26fad46d7032b39a076f6c85e07757028d",
  394. "reference": "a7e07d26fad46d7032b39a076f6c85e07757028d",
  395. "shasum": "",
  396. "mirrors": [
  397. {
  398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  399. "preferred": true
  400. }
  401. ]
  402. },
  403. "require": {
  404. "bacon/bacon-qr-code": "^2.0",
  405. "ext-gd": "*",
  406. "khanamiryan/qrcode-detector-decoder": "^1.0.2",
  407. "myclabs/php-enum": "^1.5",
  408. "php": ">=7.2",
  409. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  410. "symfony/property-access": "^3.4||^4.4||^5.0"
  411. },
  412. "require-dev": {
  413. "endroid/quality": "dev-master"
  414. },
  415. "suggest": {
  416. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  417. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  418. },
  419. "time": "2020-06-02T20:10:27+00:00",
  420. "type": "library",
  421. "extra": {
  422. "branch-alias": {
  423. "dev-master": "3.x-dev"
  424. }
  425. },
  426. "installation-source": "dist",
  427. "autoload": {
  428. "psr-4": {
  429. "Endroid\\QrCode\\": "src/"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "MIT"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Jeroen van den Enden",
  439. "email": "info@endroid.nl"
  440. }
  441. ],
  442. "description": "Endroid QR Code",
  443. "homepage": "https://github.com/endroid/qr-code",
  444. "keywords": [
  445. "bundle",
  446. "code",
  447. "endroid",
  448. "php",
  449. "qr",
  450. "qrcode"
  451. ]
  452. },
  453. {
  454. "name": "firebase/php-jwt",
  455. "version": "v5.1.0",
  456. "version_normalized": "5.1.0.0",
  457. "source": {
  458. "type": "git",
  459. "url": "https://github.com/firebase/php-jwt.git",
  460. "reference": "4566062c68f76f43d44f1643f4970fe89757d4c6"
  461. },
  462. "dist": {
  463. "type": "zip",
  464. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/4566062c68f76f43d44f1643f4970fe89757d4c6",
  465. "reference": "4566062c68f76f43d44f1643f4970fe89757d4c6",
  466. "shasum": "",
  467. "mirrors": [
  468. {
  469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  470. "preferred": true
  471. }
  472. ]
  473. },
  474. "require": {
  475. "php": ">=5.3.0"
  476. },
  477. "require-dev": {
  478. "phpunit/phpunit": "^4.8|^5"
  479. },
  480. "time": "2020-02-24T23:15:03+00:00",
  481. "type": "library",
  482. "installation-source": "dist",
  483. "autoload": {
  484. "psr-4": {
  485. "Firebase\\JWT\\": "src"
  486. }
  487. },
  488. "notification-url": "https://packagist.org/downloads/",
  489. "license": [
  490. "BSD-3-Clause"
  491. ],
  492. "authors": [
  493. {
  494. "name": "Neuman Vong",
  495. "email": "neuman+pear@twilio.com",
  496. "role": "Developer"
  497. },
  498. {
  499. "name": "Anant Narayanan",
  500. "email": "anant@php.net",
  501. "role": "Developer"
  502. }
  503. ],
  504. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  505. "homepage": "https://github.com/firebase/php-jwt"
  506. },
  507. {
  508. "name": "gregwar/captcha",
  509. "version": "v1.1.8",
  510. "version_normalized": "1.1.8.0",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/Gregwar/Captcha.git",
  514. "reference": "6088ad3db59bc226423ad1476a9f0424b19b1866"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/6088ad3db59bc226423ad1476a9f0424b19b1866",
  519. "reference": "6088ad3db59bc226423ad1476a9f0424b19b1866",
  520. "shasum": "",
  521. "mirrors": [
  522. {
  523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  524. "preferred": true
  525. }
  526. ]
  527. },
  528. "require": {
  529. "ext-gd": "*",
  530. "ext-mbstring": "*",
  531. "php": ">=5.3.0",
  532. "symfony/finder": "*"
  533. },
  534. "require-dev": {
  535. "phpunit/phpunit": "^6.4"
  536. },
  537. "time": "2020-01-22T14:54:02+00:00",
  538. "type": "captcha",
  539. "installation-source": "dist",
  540. "autoload": {
  541. "psr-4": {
  542. "Gregwar\\": "src/Gregwar"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "Grégoire Passault",
  552. "email": "g.passault@gmail.com",
  553. "homepage": "http://www.gregwar.com/"
  554. },
  555. {
  556. "name": "Jeremy Livingston",
  557. "email": "jeremy.j.livingston@gmail.com"
  558. }
  559. ],
  560. "description": "Captcha generator",
  561. "homepage": "https://github.com/Gregwar/Captcha",
  562. "keywords": [
  563. "bot",
  564. "captcha",
  565. "spam"
  566. ]
  567. },
  568. {
  569. "name": "guzzle/guzzle",
  570. "version": "v3.9.3",
  571. "version_normalized": "3.9.3.0",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/guzzle/guzzle3.git",
  575. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  580. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  581. "shasum": "",
  582. "mirrors": [
  583. {
  584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  585. "preferred": true
  586. }
  587. ]
  588. },
  589. "require": {
  590. "ext-curl": "*",
  591. "php": ">=5.3.3",
  592. "symfony/event-dispatcher": "~2.1"
  593. },
  594. "replace": {
  595. "guzzle/batch": "self.version",
  596. "guzzle/cache": "self.version",
  597. "guzzle/common": "self.version",
  598. "guzzle/http": "self.version",
  599. "guzzle/inflection": "self.version",
  600. "guzzle/iterator": "self.version",
  601. "guzzle/log": "self.version",
  602. "guzzle/parser": "self.version",
  603. "guzzle/plugin": "self.version",
  604. "guzzle/plugin-async": "self.version",
  605. "guzzle/plugin-backoff": "self.version",
  606. "guzzle/plugin-cache": "self.version",
  607. "guzzle/plugin-cookie": "self.version",
  608. "guzzle/plugin-curlauth": "self.version",
  609. "guzzle/plugin-error-response": "self.version",
  610. "guzzle/plugin-history": "self.version",
  611. "guzzle/plugin-log": "self.version",
  612. "guzzle/plugin-md5": "self.version",
  613. "guzzle/plugin-mock": "self.version",
  614. "guzzle/plugin-oauth": "self.version",
  615. "guzzle/service": "self.version",
  616. "guzzle/stream": "self.version"
  617. },
  618. "require-dev": {
  619. "doctrine/cache": "~1.3",
  620. "monolog/monolog": "~1.0",
  621. "phpunit/phpunit": "3.7.*",
  622. "psr/log": "~1.0",
  623. "symfony/class-loader": "~2.1",
  624. "zendframework/zend-cache": "2.*,<2.3",
  625. "zendframework/zend-log": "2.*,<2.3"
  626. },
  627. "suggest": {
  628. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  629. },
  630. "time": "2015-03-18T18:23:50+00:00",
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-master": "3.9-dev"
  635. }
  636. },
  637. "installation-source": "dist",
  638. "autoload": {
  639. "psr-0": {
  640. "Guzzle": "src/",
  641. "Guzzle\\Tests": "tests/"
  642. }
  643. },
  644. "notification-url": "https://packagist.org/downloads/",
  645. "license": [
  646. "MIT"
  647. ],
  648. "authors": [
  649. {
  650. "name": "Michael Dowling",
  651. "email": "mtdowling@gmail.com",
  652. "homepage": "https://github.com/mtdowling"
  653. },
  654. {
  655. "name": "Guzzle Community",
  656. "homepage": "https://github.com/guzzle/guzzle/contributors"
  657. }
  658. ],
  659. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  660. "homepage": "http://guzzlephp.org/",
  661. "keywords": [
  662. "client",
  663. "curl",
  664. "framework",
  665. "http",
  666. "http client",
  667. "rest",
  668. "web service"
  669. ],
  670. "abandoned": "guzzlehttp/guzzle"
  671. },
  672. {
  673. "name": "guzzlehttp/command",
  674. "version": "1.0.0",
  675. "version_normalized": "1.0.0.0",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/guzzle/command.git",
  679. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  684. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  685. "shasum": "",
  686. "mirrors": [
  687. {
  688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  689. "preferred": true
  690. }
  691. ]
  692. },
  693. "require": {
  694. "guzzlehttp/guzzle": "^6.2",
  695. "guzzlehttp/promises": "~1.3",
  696. "guzzlehttp/psr7": "~1.0",
  697. "php": ">=5.5.0"
  698. },
  699. "require-dev": {
  700. "phpunit/phpunit": "~4.0|~5.0"
  701. },
  702. "time": "2016-11-24T13:34:15+00:00",
  703. "type": "library",
  704. "extra": {
  705. "branch-alias": {
  706. "dev-master": "0.9-dev"
  707. }
  708. },
  709. "installation-source": "dist",
  710. "autoload": {
  711. "psr-4": {
  712. "GuzzleHttp\\Command\\": "src/"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Michael Dowling",
  722. "email": "mtdowling@gmail.com",
  723. "homepage": "https://github.com/mtdowling"
  724. },
  725. {
  726. "name": "Jeremy Lindblom",
  727. "email": "jeremeamia@gmail.com",
  728. "homepage": "https://github.com/jeremeamia"
  729. }
  730. ],
  731. "description": "Provides the foundation for building command-based web service clients"
  732. },
  733. {
  734. "name": "guzzlehttp/guzzle",
  735. "version": "6.5.2",
  736. "version_normalized": "6.5.2.0",
  737. "source": {
  738. "type": "git",
  739. "url": "https://github.com/guzzle/guzzle.git",
  740. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  741. },
  742. "dist": {
  743. "type": "zip",
  744. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  745. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  746. "shasum": "",
  747. "mirrors": [
  748. {
  749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  750. "preferred": true
  751. }
  752. ]
  753. },
  754. "require": {
  755. "ext-json": "*",
  756. "guzzlehttp/promises": "^1.0",
  757. "guzzlehttp/psr7": "^1.6.1",
  758. "php": ">=5.5"
  759. },
  760. "require-dev": {
  761. "ext-curl": "*",
  762. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  763. "psr/log": "^1.1"
  764. },
  765. "suggest": {
  766. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  767. "psr/log": "Required for using the Log middleware"
  768. },
  769. "time": "2019-12-23T11:57:10+00:00",
  770. "type": "library",
  771. "extra": {
  772. "branch-alias": {
  773. "dev-master": "6.5-dev"
  774. }
  775. },
  776. "installation-source": "dist",
  777. "autoload": {
  778. "psr-4": {
  779. "GuzzleHttp\\": "src/"
  780. },
  781. "files": [
  782. "src/functions_include.php"
  783. ]
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Michael Dowling",
  792. "email": "mtdowling@gmail.com",
  793. "homepage": "https://github.com/mtdowling"
  794. }
  795. ],
  796. "description": "Guzzle is a PHP HTTP client library",
  797. "homepage": "http://guzzlephp.org/",
  798. "keywords": [
  799. "client",
  800. "curl",
  801. "framework",
  802. "http",
  803. "http client",
  804. "rest",
  805. "web service"
  806. ]
  807. },
  808. {
  809. "name": "guzzlehttp/guzzle-services",
  810. "version": "1.1.3",
  811. "version_normalized": "1.1.3.0",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/guzzle/guzzle-services.git",
  815. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  820. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  821. "shasum": "",
  822. "mirrors": [
  823. {
  824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  825. "preferred": true
  826. }
  827. ]
  828. },
  829. "require": {
  830. "guzzlehttp/command": "~1.0",
  831. "guzzlehttp/guzzle": "^6.2",
  832. "php": ">=5.5"
  833. },
  834. "require-dev": {
  835. "phpunit/phpunit": "~4.0"
  836. },
  837. "suggest": {
  838. "gimler/guzzle-description-loader": "^0.0.4"
  839. },
  840. "time": "2017-10-06T14:32:02+00:00",
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "1.0.x-dev"
  845. }
  846. },
  847. "installation-source": "dist",
  848. "autoload": {
  849. "psr-4": {
  850. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "Michael Dowling",
  860. "email": "mtdowling@gmail.com",
  861. "homepage": "https://github.com/mtdowling"
  862. },
  863. {
  864. "name": "Jeremy Lindblom",
  865. "email": "jeremeamia@gmail.com",
  866. "homepage": "https://github.com/jeremeamia"
  867. },
  868. {
  869. "name": "Stefano Kowalke",
  870. "email": "blueduck@mail.org",
  871. "homepage": "https://github.com/konafets"
  872. }
  873. ],
  874. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures."
  875. },
  876. {
  877. "name": "guzzlehttp/promises",
  878. "version": "v1.3.1",
  879. "version_normalized": "1.3.1.0",
  880. "source": {
  881. "type": "git",
  882. "url": "https://github.com/guzzle/promises.git",
  883. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  884. },
  885. "dist": {
  886. "type": "zip",
  887. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  888. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  889. "shasum": "",
  890. "mirrors": [
  891. {
  892. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  893. "preferred": true
  894. }
  895. ]
  896. },
  897. "require": {
  898. "php": ">=5.5.0"
  899. },
  900. "require-dev": {
  901. "phpunit/phpunit": "^4.0"
  902. },
  903. "time": "2016-12-20T10:07:11+00:00",
  904. "type": "library",
  905. "extra": {
  906. "branch-alias": {
  907. "dev-master": "1.4-dev"
  908. }
  909. },
  910. "installation-source": "dist",
  911. "autoload": {
  912. "psr-4": {
  913. "GuzzleHttp\\Promise\\": "src/"
  914. },
  915. "files": [
  916. "src/functions_include.php"
  917. ]
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "Michael Dowling",
  926. "email": "mtdowling@gmail.com",
  927. "homepage": "https://github.com/mtdowling"
  928. }
  929. ],
  930. "description": "Guzzle promises library",
  931. "keywords": [
  932. "promise"
  933. ]
  934. },
  935. {
  936. "name": "guzzlehttp/psr7",
  937. "version": "1.6.1",
  938. "version_normalized": "1.6.1.0",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/guzzle/psr7.git",
  942. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  947. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  948. "shasum": "",
  949. "mirrors": [
  950. {
  951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  952. "preferred": true
  953. }
  954. ]
  955. },
  956. "require": {
  957. "php": ">=5.4.0",
  958. "psr/http-message": "~1.0",
  959. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  960. },
  961. "provide": {
  962. "psr/http-message-implementation": "1.0"
  963. },
  964. "require-dev": {
  965. "ext-zlib": "*",
  966. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  967. },
  968. "suggest": {
  969. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  970. },
  971. "time": "2019-07-01T23:21:34+00:00",
  972. "type": "library",
  973. "extra": {
  974. "branch-alias": {
  975. "dev-master": "1.6-dev"
  976. }
  977. },
  978. "installation-source": "dist",
  979. "autoload": {
  980. "psr-4": {
  981. "GuzzleHttp\\Psr7\\": "src/"
  982. },
  983. "files": [
  984. "src/functions_include.php"
  985. ]
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "Michael Dowling",
  994. "email": "mtdowling@gmail.com",
  995. "homepage": "https://github.com/mtdowling"
  996. },
  997. {
  998. "name": "Tobias Schultze",
  999. "homepage": "https://github.com/Tobion"
  1000. }
  1001. ],
  1002. "description": "PSR-7 message implementation that also provides common utility methods",
  1003. "keywords": [
  1004. "http",
  1005. "message",
  1006. "psr-7",
  1007. "request",
  1008. "response",
  1009. "stream",
  1010. "uri",
  1011. "url"
  1012. ]
  1013. },
  1014. {
  1015. "name": "joypack/tencent-map",
  1016. "version": "1.0.0",
  1017. "version_normalized": "1.0.0.0",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/joypack/tencent-map.git",
  1021. "reference": "6421402667943496618d67db4dc277094d404638"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/joypack/tencent-map/zipball/6421402667943496618d67db4dc277094d404638",
  1026. "reference": "6421402667943496618d67db4dc277094d404638",
  1027. "shasum": "",
  1028. "mirrors": [
  1029. {
  1030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1031. "preferred": true
  1032. }
  1033. ]
  1034. },
  1035. "require": {
  1036. "php": ">=5.6"
  1037. },
  1038. "time": "2020-11-26T13:13:58+00:00",
  1039. "type": "library",
  1040. "installation-source": "dist",
  1041. "autoload": {
  1042. "psr-4": {
  1043. "Joypack\\Tencent\\Map\\": "src"
  1044. }
  1045. },
  1046. "notification-url": "https://packagist.org/downloads/",
  1047. "license": [
  1048. "Apache-2.0"
  1049. ],
  1050. "authors": [
  1051. {
  1052. "name": "堪笑",
  1053. "email": "jixiang.f@gmail.com",
  1054. "homepage": "http://cli.life",
  1055. "role": "Developer"
  1056. }
  1057. ],
  1058. "description": "腾讯位置服务(WebService)",
  1059. "homepage": "https://github.com/joypack/tencent-map",
  1060. "keywords": [
  1061. "LBS",
  1062. "腾讯位置服务"
  1063. ]
  1064. },
  1065. {
  1066. "name": "khanamiryan/qrcode-detector-decoder",
  1067. "version": "1.0.3",
  1068. "version_normalized": "1.0.3.0",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1072. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  1077. "reference": "89b57f2d9939dd57394b83f6ccbd3e1a74659e34",
  1078. "shasum": "",
  1079. "mirrors": [
  1080. {
  1081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1082. "preferred": true
  1083. }
  1084. ]
  1085. },
  1086. "require": {
  1087. "php": "^5.6|^7.0"
  1088. },
  1089. "require-dev": {
  1090. "phpunit/phpunit": "^5.7"
  1091. },
  1092. "time": "2020-04-19T16:18:51+00:00",
  1093. "type": "library",
  1094. "installation-source": "dist",
  1095. "autoload": {
  1096. "psr-4": {
  1097. "Zxing\\": "lib/"
  1098. },
  1099. "files": [
  1100. "lib/Common/customFunctions.php"
  1101. ]
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Ashot Khanamiryan",
  1110. "email": "a.khanamiryan@gmail.com",
  1111. "homepage": "https://github.com/khanamiryan",
  1112. "role": "Developer"
  1113. }
  1114. ],
  1115. "description": "QR code decoder / reader",
  1116. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1117. "keywords": [
  1118. "barcode",
  1119. "qr",
  1120. "zxing"
  1121. ]
  1122. },
  1123. {
  1124. "name": "league/flysystem",
  1125. "version": "1.0.66",
  1126. "version_normalized": "1.0.66.0",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/thephpleague/flysystem.git",
  1130. "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/021569195e15f8209b1c4bebb78bd66aa4f08c21",
  1135. "reference": "021569195e15f8209b1c4bebb78bd66aa4f08c21",
  1136. "shasum": "",
  1137. "mirrors": [
  1138. {
  1139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1140. "preferred": true
  1141. }
  1142. ]
  1143. },
  1144. "require": {
  1145. "ext-fileinfo": "*",
  1146. "php": ">=5.5.9"
  1147. },
  1148. "conflict": {
  1149. "league/flysystem-sftp": "<1.0.6"
  1150. },
  1151. "require-dev": {
  1152. "phpspec/phpspec": "^3.4",
  1153. "phpunit/phpunit": "^5.7.26"
  1154. },
  1155. "suggest": {
  1156. "ext-fileinfo": "Required for MimeType",
  1157. "ext-ftp": "Allows you to use FTP server storage",
  1158. "ext-openssl": "Allows you to use FTPS server storage",
  1159. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1160. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1161. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1162. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1163. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1164. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1165. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1166. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1167. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1168. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1169. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1170. },
  1171. "time": "2020-03-17T18:58:12+00:00",
  1172. "type": "library",
  1173. "extra": {
  1174. "branch-alias": {
  1175. "dev-master": "1.1-dev"
  1176. }
  1177. },
  1178. "installation-source": "dist",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "League\\Flysystem\\": "src/"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Frank de Jonge",
  1191. "email": "info@frenky.net"
  1192. }
  1193. ],
  1194. "description": "Filesystem abstraction: Many filesystems, one API.",
  1195. "keywords": [
  1196. "Cloud Files",
  1197. "WebDAV",
  1198. "abstraction",
  1199. "aws",
  1200. "cloud",
  1201. "copy.com",
  1202. "dropbox",
  1203. "file systems",
  1204. "files",
  1205. "filesystem",
  1206. "filesystems",
  1207. "ftp",
  1208. "rackspace",
  1209. "remote",
  1210. "s3",
  1211. "sftp",
  1212. "storage"
  1213. ]
  1214. },
  1215. {
  1216. "name": "league/flysystem-cached-adapter",
  1217. "version": "1.0.9",
  1218. "version_normalized": "1.0.9.0",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1222. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1227. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1228. "shasum": "",
  1229. "mirrors": [
  1230. {
  1231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1232. "preferred": true
  1233. }
  1234. ]
  1235. },
  1236. "require": {
  1237. "league/flysystem": "~1.0",
  1238. "psr/cache": "^1.0.0"
  1239. },
  1240. "require-dev": {
  1241. "mockery/mockery": "~0.9",
  1242. "phpspec/phpspec": "^3.4",
  1243. "phpunit/phpunit": "^5.7",
  1244. "predis/predis": "~1.0",
  1245. "tedivm/stash": "~0.12"
  1246. },
  1247. "suggest": {
  1248. "ext-phpredis": "Pure C implemented extension for PHP"
  1249. },
  1250. "time": "2018-07-09T20:51:04+00:00",
  1251. "type": "library",
  1252. "installation-source": "dist",
  1253. "autoload": {
  1254. "psr-4": {
  1255. "League\\Flysystem\\Cached\\": "src/"
  1256. }
  1257. },
  1258. "notification-url": "https://packagist.org/downloads/",
  1259. "license": [
  1260. "MIT"
  1261. ],
  1262. "authors": [
  1263. {
  1264. "name": "frankdejonge",
  1265. "email": "info@frenky.net"
  1266. }
  1267. ],
  1268. "description": "An adapter decorator to enable meta-data caching."
  1269. },
  1270. {
  1271. "name": "lizhichao/word",
  1272. "version": "v2.1",
  1273. "version_normalized": "2.1.0.0",
  1274. "source": {
  1275. "type": "git",
  1276. "url": "https://github.com/lizhichao/VicWord.git",
  1277. "reference": "f17172d45f505e7140da0bde2103defc13255326"
  1278. },
  1279. "dist": {
  1280. "type": "zip",
  1281. "url": "https://api.github.com/repos/lizhichao/VicWord/zipball/f17172d45f505e7140da0bde2103defc13255326",
  1282. "reference": "f17172d45f505e7140da0bde2103defc13255326",
  1283. "shasum": "",
  1284. "mirrors": [
  1285. {
  1286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1287. "preferred": true
  1288. }
  1289. ]
  1290. },
  1291. "require": {
  1292. "php": ">=5.6.0"
  1293. },
  1294. "time": "2020-07-30T07:33:06+00:00",
  1295. "type": "library",
  1296. "installation-source": "dist",
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Lizhichao\\Word\\": "Lib"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "Apache-2.0"
  1305. ],
  1306. "authors": [
  1307. {
  1308. "name": "tanszhe",
  1309. "email": "1018595261@qq.com"
  1310. }
  1311. ],
  1312. "description": "This is a participle library"
  1313. },
  1314. {
  1315. "name": "maennchen/zipstream-php",
  1316. "version": "2.1.0",
  1317. "version_normalized": "2.1.0.0",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1321. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1326. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1327. "shasum": "",
  1328. "mirrors": [
  1329. {
  1330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1331. "preferred": true
  1332. }
  1333. ]
  1334. },
  1335. "require": {
  1336. "myclabs/php-enum": "^1.5",
  1337. "php": ">= 7.1",
  1338. "psr/http-message": "^1.0",
  1339. "symfony/polyfill-mbstring": "^1.0"
  1340. },
  1341. "require-dev": {
  1342. "ext-zip": "*",
  1343. "guzzlehttp/guzzle": ">= 6.3",
  1344. "mikey179/vfsstream": "^1.6",
  1345. "phpunit/phpunit": ">= 7.5"
  1346. },
  1347. "time": "2020-05-30T13:11:16+00:00",
  1348. "type": "library",
  1349. "installation-source": "dist",
  1350. "autoload": {
  1351. "psr-4": {
  1352. "ZipStream\\": "src/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Paul Duncan",
  1362. "email": "pabs@pablotron.org"
  1363. },
  1364. {
  1365. "name": "Jonatan Männchen",
  1366. "email": "jonatan@maennchen.ch"
  1367. },
  1368. {
  1369. "name": "Jesse Donat",
  1370. "email": "donatj@gmail.com"
  1371. },
  1372. {
  1373. "name": "András Kolesár",
  1374. "email": "kolesar@kolesar.hu"
  1375. }
  1376. ],
  1377. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1378. "keywords": [
  1379. "stream",
  1380. "zip"
  1381. ]
  1382. },
  1383. {
  1384. "name": "markbaker/complex",
  1385. "version": "1.4.8",
  1386. "version_normalized": "1.4.8.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1390. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/8eaa40cceec7bf0518187530b2e63871be661b72",
  1395. "reference": "8eaa40cceec7bf0518187530b2e63871be661b72",
  1396. "shasum": "",
  1397. "mirrors": [
  1398. {
  1399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1400. "preferred": true
  1401. }
  1402. ]
  1403. },
  1404. "require": {
  1405. "php": "^5.6.0|^7.0.0"
  1406. },
  1407. "require-dev": {
  1408. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  1409. "phpcompatibility/php-compatibility": "^9.0",
  1410. "phpdocumentor/phpdocumentor": "2.*",
  1411. "phploc/phploc": "2.*",
  1412. "phpmd/phpmd": "2.*",
  1413. "phpunit/phpunit": "^4.8.35|^5.4.0",
  1414. "sebastian/phpcpd": "2.*",
  1415. "squizlabs/php_codesniffer": "^3.4.0"
  1416. },
  1417. "time": "2020-03-11T20:15:49+00:00",
  1418. "type": "library",
  1419. "installation-source": "dist",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Complex\\": "classes/src/"
  1423. },
  1424. "files": [
  1425. "classes/src/functions/abs.php",
  1426. "classes/src/functions/acos.php",
  1427. "classes/src/functions/acosh.php",
  1428. "classes/src/functions/acot.php",
  1429. "classes/src/functions/acoth.php",
  1430. "classes/src/functions/acsc.php",
  1431. "classes/src/functions/acsch.php",
  1432. "classes/src/functions/argument.php",
  1433. "classes/src/functions/asec.php",
  1434. "classes/src/functions/asech.php",
  1435. "classes/src/functions/asin.php",
  1436. "classes/src/functions/asinh.php",
  1437. "classes/src/functions/atan.php",
  1438. "classes/src/functions/atanh.php",
  1439. "classes/src/functions/conjugate.php",
  1440. "classes/src/functions/cos.php",
  1441. "classes/src/functions/cosh.php",
  1442. "classes/src/functions/cot.php",
  1443. "classes/src/functions/coth.php",
  1444. "classes/src/functions/csc.php",
  1445. "classes/src/functions/csch.php",
  1446. "classes/src/functions/exp.php",
  1447. "classes/src/functions/inverse.php",
  1448. "classes/src/functions/ln.php",
  1449. "classes/src/functions/log2.php",
  1450. "classes/src/functions/log10.php",
  1451. "classes/src/functions/negative.php",
  1452. "classes/src/functions/pow.php",
  1453. "classes/src/functions/rho.php",
  1454. "classes/src/functions/sec.php",
  1455. "classes/src/functions/sech.php",
  1456. "classes/src/functions/sin.php",
  1457. "classes/src/functions/sinh.php",
  1458. "classes/src/functions/sqrt.php",
  1459. "classes/src/functions/tan.php",
  1460. "classes/src/functions/tanh.php",
  1461. "classes/src/functions/theta.php",
  1462. "classes/src/operations/add.php",
  1463. "classes/src/operations/subtract.php",
  1464. "classes/src/operations/multiply.php",
  1465. "classes/src/operations/divideby.php",
  1466. "classes/src/operations/divideinto.php"
  1467. ]
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "MIT"
  1472. ],
  1473. "authors": [
  1474. {
  1475. "name": "Mark Baker",
  1476. "email": "mark@lange.demon.co.uk"
  1477. }
  1478. ],
  1479. "description": "PHP Class for working with complex numbers",
  1480. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1481. "keywords": [
  1482. "complex",
  1483. "mathematics"
  1484. ]
  1485. },
  1486. {
  1487. "name": "markbaker/matrix",
  1488. "version": "1.2.0",
  1489. "version_normalized": "1.2.0.0",
  1490. "source": {
  1491. "type": "git",
  1492. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1493. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21"
  1494. },
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1498. "reference": "5348c5a67e3b75cd209d70103f916a93b1f1ed21",
  1499. "shasum": "",
  1500. "mirrors": [
  1501. {
  1502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1503. "preferred": true
  1504. }
  1505. ]
  1506. },
  1507. "require": {
  1508. "php": "^5.6.0|^7.0.0"
  1509. },
  1510. "require-dev": {
  1511. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1512. "phpcompatibility/php-compatibility": "dev-master",
  1513. "phploc/phploc": "^4",
  1514. "phpmd/phpmd": "dev-master",
  1515. "phpunit/phpunit": "^5.7",
  1516. "sebastian/phpcpd": "^3.0",
  1517. "squizlabs/php_codesniffer": "^3.0@dev"
  1518. },
  1519. "time": "2019-10-06T11:29:25+00:00",
  1520. "type": "library",
  1521. "installation-source": "dist",
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Matrix\\": "classes/src/"
  1525. },
  1526. "files": [
  1527. "classes/src/functions/adjoint.php",
  1528. "classes/src/functions/antidiagonal.php",
  1529. "classes/src/functions/cofactors.php",
  1530. "classes/src/functions/determinant.php",
  1531. "classes/src/functions/diagonal.php",
  1532. "classes/src/functions/identity.php",
  1533. "classes/src/functions/inverse.php",
  1534. "classes/src/functions/minors.php",
  1535. "classes/src/functions/trace.php",
  1536. "classes/src/functions/transpose.php",
  1537. "classes/src/operations/add.php",
  1538. "classes/src/operations/directsum.php",
  1539. "classes/src/operations/subtract.php",
  1540. "classes/src/operations/multiply.php",
  1541. "classes/src/operations/divideby.php",
  1542. "classes/src/operations/divideinto.php"
  1543. ]
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Mark Baker",
  1552. "email": "mark@lange.demon.co.uk"
  1553. }
  1554. ],
  1555. "description": "PHP Class for working with matrices",
  1556. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1557. "keywords": [
  1558. "mathematics",
  1559. "matrix",
  1560. "vector"
  1561. ]
  1562. },
  1563. {
  1564. "name": "monolog/monolog",
  1565. "version": "1.25.3",
  1566. "version_normalized": "1.25.3.0",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/Seldaek/monolog.git",
  1570. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1",
  1575. "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1",
  1576. "shasum": "",
  1577. "mirrors": [
  1578. {
  1579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1580. "preferred": true
  1581. }
  1582. ]
  1583. },
  1584. "require": {
  1585. "php": ">=5.3.0",
  1586. "psr/log": "~1.0"
  1587. },
  1588. "provide": {
  1589. "psr/log-implementation": "1.0.0"
  1590. },
  1591. "require-dev": {
  1592. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1593. "doctrine/couchdb": "~1.0@dev",
  1594. "graylog2/gelf-php": "~1.0",
  1595. "jakub-onderka/php-parallel-lint": "0.9",
  1596. "php-amqplib/php-amqplib": "~2.4",
  1597. "php-console/php-console": "^3.1.3",
  1598. "phpunit/phpunit": "~4.5",
  1599. "phpunit/phpunit-mock-objects": "2.3.0",
  1600. "ruflin/elastica": ">=0.90 <3.0",
  1601. "sentry/sentry": "^0.13",
  1602. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1603. },
  1604. "suggest": {
  1605. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1606. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1607. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1608. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1609. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1610. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1611. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1612. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1613. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1614. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1615. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1616. },
  1617. "time": "2019-12-20T14:15:16+00:00",
  1618. "type": "library",
  1619. "extra": {
  1620. "branch-alias": {
  1621. "dev-master": "2.0.x-dev"
  1622. }
  1623. },
  1624. "installation-source": "dist",
  1625. "autoload": {
  1626. "psr-4": {
  1627. "Monolog\\": "src/Monolog"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Jordi Boggiano",
  1637. "email": "j.boggiano@seld.be",
  1638. "homepage": "http://seld.be"
  1639. }
  1640. ],
  1641. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1642. "homepage": "http://github.com/Seldaek/monolog",
  1643. "keywords": [
  1644. "log",
  1645. "logging",
  1646. "psr-3"
  1647. ]
  1648. },
  1649. {
  1650. "name": "myclabs/php-enum",
  1651. "version": "1.7.6",
  1652. "version_normalized": "1.7.6.0",
  1653. "source": {
  1654. "type": "git",
  1655. "url": "https://github.com/myclabs/php-enum.git",
  1656. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c"
  1657. },
  1658. "dist": {
  1659. "type": "zip",
  1660. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  1661. "reference": "5f36467c7a87e20fbdc51e524fd8f9d1de80187c",
  1662. "shasum": "",
  1663. "mirrors": [
  1664. {
  1665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1666. "preferred": true
  1667. }
  1668. ]
  1669. },
  1670. "require": {
  1671. "ext-json": "*",
  1672. "php": ">=7.1"
  1673. },
  1674. "require-dev": {
  1675. "phpunit/phpunit": "^7",
  1676. "squizlabs/php_codesniffer": "1.*",
  1677. "vimeo/psalm": "^3.8"
  1678. },
  1679. "time": "2020-02-14T08:15:52+00:00",
  1680. "type": "library",
  1681. "installation-source": "dist",
  1682. "autoload": {
  1683. "psr-4": {
  1684. "MyCLabs\\Enum\\": "src/"
  1685. }
  1686. },
  1687. "notification-url": "https://packagist.org/downloads/",
  1688. "license": [
  1689. "MIT"
  1690. ],
  1691. "authors": [
  1692. {
  1693. "name": "PHP Enum contributors",
  1694. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1695. }
  1696. ],
  1697. "description": "PHP Enum implementation",
  1698. "homepage": "http://github.com/myclabs/php-enum",
  1699. "keywords": [
  1700. "enum"
  1701. ]
  1702. },
  1703. {
  1704. "name": "nesbot/carbon",
  1705. "version": "2.31.0",
  1706. "version_normalized": "2.31.0.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/briannesbitt/Carbon.git",
  1710. "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
  1715. "reference": "bbc0ab53f41a4c6f223c18efcdbd9bc725eb5d2d",
  1716. "shasum": "",
  1717. "mirrors": [
  1718. {
  1719. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1720. "preferred": true
  1721. }
  1722. ]
  1723. },
  1724. "require": {
  1725. "ext-json": "*",
  1726. "php": "^7.1.8 || ^8.0",
  1727. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  1728. },
  1729. "require-dev": {
  1730. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1731. "kylekatarnls/multi-tester": "^1.1",
  1732. "phpmd/phpmd": "^2.8",
  1733. "phpstan/phpstan": "^0.11",
  1734. "phpunit/phpunit": "^7.5 || ^8.0",
  1735. "squizlabs/php_codesniffer": "^3.4"
  1736. },
  1737. "time": "2020-03-01T11:11:58+00:00",
  1738. "bin": [
  1739. "bin/carbon"
  1740. ],
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-master": "2.x-dev"
  1745. },
  1746. "laravel": {
  1747. "providers": [
  1748. "Carbon\\Laravel\\ServiceProvider"
  1749. ]
  1750. }
  1751. },
  1752. "installation-source": "dist",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "Carbon\\": "src/Carbon/"
  1756. }
  1757. },
  1758. "notification-url": "https://packagist.org/downloads/",
  1759. "license": [
  1760. "MIT"
  1761. ],
  1762. "authors": [
  1763. {
  1764. "name": "Brian Nesbitt",
  1765. "email": "brian@nesbot.com",
  1766. "homepage": "http://nesbot.com"
  1767. },
  1768. {
  1769. "name": "kylekatarnls",
  1770. "homepage": "http://github.com/kylekatarnls"
  1771. }
  1772. ],
  1773. "description": "An API extension for DateTime that supports 281 different languages.",
  1774. "homepage": "http://carbon.nesbot.com",
  1775. "keywords": [
  1776. "date",
  1777. "datetime",
  1778. "time"
  1779. ]
  1780. },
  1781. {
  1782. "name": "nette/php-generator",
  1783. "version": "v3.3.4",
  1784. "version_normalized": "3.3.4.0",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/nette/php-generator.git",
  1788. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/nette/php-generator/zipball/8fe7e699dca7db186f56d75800cb1ec32e39c856",
  1793. "reference": "8fe7e699dca7db186f56d75800cb1ec32e39c856",
  1794. "shasum": "",
  1795. "mirrors": [
  1796. {
  1797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1798. "preferred": true
  1799. }
  1800. ]
  1801. },
  1802. "require": {
  1803. "nette/utils": "^2.4.2 || ^3.0",
  1804. "php": ">=7.1"
  1805. },
  1806. "require-dev": {
  1807. "nette/tester": "^2.0",
  1808. "phpstan/phpstan": "^0.12",
  1809. "tracy/tracy": "^2.3"
  1810. },
  1811. "time": "2020-02-09T14:39:09+00:00",
  1812. "type": "library",
  1813. "extra": {
  1814. "branch-alias": {
  1815. "dev-master": "3.3-dev"
  1816. }
  1817. },
  1818. "installation-source": "dist",
  1819. "autoload": {
  1820. "classmap": [
  1821. "src/"
  1822. ]
  1823. },
  1824. "notification-url": "https://packagist.org/downloads/",
  1825. "license": [
  1826. "BSD-3-Clause",
  1827. "GPL-2.0-only",
  1828. "GPL-3.0-only"
  1829. ],
  1830. "authors": [
  1831. {
  1832. "name": "David Grudl",
  1833. "homepage": "https://davidgrudl.com"
  1834. },
  1835. {
  1836. "name": "Nette Community",
  1837. "homepage": "https://nette.org/contributors"
  1838. }
  1839. ],
  1840. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 7.4 features.",
  1841. "homepage": "https://nette.org",
  1842. "keywords": [
  1843. "code",
  1844. "nette",
  1845. "php",
  1846. "scaffolding"
  1847. ]
  1848. },
  1849. {
  1850. "name": "nette/utils",
  1851. "version": "v3.1.1",
  1852. "version_normalized": "3.1.1.0",
  1853. "source": {
  1854. "type": "git",
  1855. "url": "https://github.com/nette/utils.git",
  1856. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb"
  1857. },
  1858. "dist": {
  1859. "type": "zip",
  1860. "url": "https://api.github.com/repos/nette/utils/zipball/2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  1861. "reference": "2c17d16d8887579ae1c0898ff94a3668997fd3eb",
  1862. "shasum": "",
  1863. "mirrors": [
  1864. {
  1865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1866. "preferred": true
  1867. }
  1868. ]
  1869. },
  1870. "require": {
  1871. "php": ">=7.1"
  1872. },
  1873. "require-dev": {
  1874. "nette/tester": "~2.0",
  1875. "phpstan/phpstan": "^0.12",
  1876. "tracy/tracy": "^2.3"
  1877. },
  1878. "suggest": {
  1879. "ext-gd": "to use Image",
  1880. "ext-iconv": "to use Strings::webalize() and toAscii()",
  1881. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1882. "ext-json": "to use Nette\\Utils\\Json",
  1883. "ext-mbstring": "to use Strings::lower() etc...",
  1884. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  1885. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  1886. },
  1887. "time": "2020-02-09T14:10:55+00:00",
  1888. "type": "library",
  1889. "extra": {
  1890. "branch-alias": {
  1891. "dev-master": "3.1-dev"
  1892. }
  1893. },
  1894. "installation-source": "dist",
  1895. "autoload": {
  1896. "classmap": [
  1897. "src/"
  1898. ]
  1899. },
  1900. "notification-url": "https://packagist.org/downloads/",
  1901. "license": [
  1902. "BSD-3-Clause",
  1903. "GPL-2.0-only",
  1904. "GPL-3.0-only"
  1905. ],
  1906. "authors": [
  1907. {
  1908. "name": "David Grudl",
  1909. "homepage": "https://davidgrudl.com"
  1910. },
  1911. {
  1912. "name": "Nette Community",
  1913. "homepage": "https://nette.org/contributors"
  1914. }
  1915. ],
  1916. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1917. "homepage": "https://nette.org",
  1918. "keywords": [
  1919. "array",
  1920. "core",
  1921. "datetime",
  1922. "images",
  1923. "json",
  1924. "nette",
  1925. "paginator",
  1926. "password",
  1927. "slugify",
  1928. "string",
  1929. "unicode",
  1930. "utf-8",
  1931. "utility",
  1932. "validation"
  1933. ]
  1934. },
  1935. {
  1936. "name": "open-smf/connection-pool",
  1937. "version": "v1.0.15",
  1938. "version_normalized": "1.0.15.0",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/open-smf/connection-pool.git",
  1942. "reference": "f9289cb5ee61d3e901bc74ab745e5b2162461a1e"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f9289cb5ee61d3e901bc74ab745e5b2162461a1e",
  1947. "reference": "f9289cb5ee61d3e901bc74ab745e5b2162461a1e",
  1948. "shasum": "",
  1949. "mirrors": [
  1950. {
  1951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1952. "preferred": true
  1953. }
  1954. ]
  1955. },
  1956. "require": {
  1957. "ext-json": "*",
  1958. "ext-swoole": ">=4.2.9",
  1959. "php": ">=7.0.0"
  1960. },
  1961. "require-dev": {
  1962. "swoole/ide-helper": "@dev"
  1963. },
  1964. "suggest": {
  1965. "ext-redis": "A PHP extension for Redis."
  1966. },
  1967. "time": "2020-05-29T05:20:59+00:00",
  1968. "type": "library",
  1969. "installation-source": "dist",
  1970. "autoload": {
  1971. "psr-4": {
  1972. "Smf\\ConnectionPool\\": "src"
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "MIT"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "Xie Biao",
  1982. "email": "hhxsv5@sina.com"
  1983. }
  1984. ],
  1985. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  1986. "homepage": "https://github.com/open-smf/connection-pool",
  1987. "keywords": [
  1988. "connection-pool",
  1989. "database-connection-pool",
  1990. "swoole"
  1991. ]
  1992. },
  1993. {
  1994. "name": "opis/closure",
  1995. "version": "3.5.1",
  1996. "version_normalized": "3.5.1.0",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/opis/closure.git",
  2000. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  2005. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  2006. "shasum": "",
  2007. "mirrors": [
  2008. {
  2009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2010. "preferred": true
  2011. }
  2012. ]
  2013. },
  2014. "require": {
  2015. "php": "^5.4 || ^7.0"
  2016. },
  2017. "require-dev": {
  2018. "jeremeamia/superclosure": "^2.0",
  2019. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  2020. },
  2021. "time": "2019-11-29T22:36:02+00:00",
  2022. "type": "library",
  2023. "extra": {
  2024. "branch-alias": {
  2025. "dev-master": "3.5.x-dev"
  2026. }
  2027. },
  2028. "installation-source": "dist",
  2029. "autoload": {
  2030. "psr-4": {
  2031. "Opis\\Closure\\": "src/"
  2032. },
  2033. "files": [
  2034. "functions.php"
  2035. ]
  2036. },
  2037. "notification-url": "https://packagist.org/downloads/",
  2038. "license": [
  2039. "MIT"
  2040. ],
  2041. "authors": [
  2042. {
  2043. "name": "Marius Sarca",
  2044. "email": "marius.sarca@gmail.com"
  2045. },
  2046. {
  2047. "name": "Sorin Sarca",
  2048. "email": "sarca_sorin@hotmail.com"
  2049. }
  2050. ],
  2051. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2052. "homepage": "https://opis.io/closure",
  2053. "keywords": [
  2054. "anonymous functions",
  2055. "closure",
  2056. "function",
  2057. "serializable",
  2058. "serialization",
  2059. "serialize"
  2060. ]
  2061. },
  2062. {
  2063. "name": "overtrue/socialite",
  2064. "version": "1.3.0",
  2065. "version_normalized": "1.3.0.0",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://github.com/overtrue/socialite.git",
  2069. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  2074. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  2075. "shasum": "",
  2076. "mirrors": [
  2077. {
  2078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2079. "preferred": true
  2080. }
  2081. ]
  2082. },
  2083. "require": {
  2084. "guzzlehttp/guzzle": "~5.0|~6.0",
  2085. "php": ">=5.4.0",
  2086. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  2087. },
  2088. "require-dev": {
  2089. "mockery/mockery": "~0.9",
  2090. "phpunit/phpunit": "~4.0"
  2091. },
  2092. "time": "2017-08-04T06:28:22+00:00",
  2093. "type": "library",
  2094. "installation-source": "dist",
  2095. "autoload": {
  2096. "psr-4": {
  2097. "Overtrue\\Socialite\\": "src/"
  2098. }
  2099. },
  2100. "notification-url": "https://packagist.org/downloads/",
  2101. "license": [
  2102. "MIT"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "overtrue",
  2107. "email": "anzhengchao@gmail.com"
  2108. }
  2109. ],
  2110. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2111. "keywords": [
  2112. "login",
  2113. "oauth",
  2114. "qq",
  2115. "social",
  2116. "wechat",
  2117. "weibo"
  2118. ]
  2119. },
  2120. {
  2121. "name": "overtrue/wechat",
  2122. "version": "3.3.33",
  2123. "version_normalized": "3.3.33.0",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/w7corp/easywechat.git",
  2127. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  2132. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  2133. "shasum": "",
  2134. "mirrors": [
  2135. {
  2136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2137. "preferred": true
  2138. }
  2139. ]
  2140. },
  2141. "require": {
  2142. "doctrine/cache": "1.4.*",
  2143. "ext-openssl": "*",
  2144. "guzzlehttp/guzzle": "~6.2",
  2145. "monolog/monolog": "^1.17",
  2146. "overtrue/socialite": "^1.0.25",
  2147. "php": ">=5.5.0",
  2148. "pimple/pimple": "~3.0",
  2149. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  2150. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  2151. },
  2152. "require-dev": {
  2153. "mockery/mockery": "^0.9.9",
  2154. "overtrue/phplint": "dev-master",
  2155. "phpunit/phpunit": "~4.0"
  2156. },
  2157. "time": "2018-10-17T12:27:27+00:00",
  2158. "type": "library",
  2159. "installation-source": "dist",
  2160. "autoload": {
  2161. "psr-4": {
  2162. "EasyWeChat\\": "src/"
  2163. },
  2164. "files": [
  2165. "src/Payment/helpers.php"
  2166. ]
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "overtrue",
  2175. "email": "anzhengchao@gmail.com"
  2176. }
  2177. ],
  2178. "description": "微信SDK",
  2179. "keywords": [
  2180. "sdk",
  2181. "wechat",
  2182. "weixin",
  2183. "weixin-sdk"
  2184. ]
  2185. },
  2186. {
  2187. "name": "paragonie/random_compat",
  2188. "version": "v9.99.99",
  2189. "version_normalized": "9.99.99.0",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/paragonie/random_compat.git",
  2193. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2198. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  2199. "shasum": "",
  2200. "mirrors": [
  2201. {
  2202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2203. "preferred": true
  2204. }
  2205. ]
  2206. },
  2207. "require": {
  2208. "php": "^7"
  2209. },
  2210. "require-dev": {
  2211. "phpunit/phpunit": "4.*|5.*",
  2212. "vimeo/psalm": "^1"
  2213. },
  2214. "suggest": {
  2215. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2216. },
  2217. "time": "2018-07-02T15:55:56+00:00",
  2218. "type": "library",
  2219. "installation-source": "dist",
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Paragon Initiative Enterprises",
  2227. "email": "security@paragonie.com",
  2228. "homepage": "https://paragonie.com"
  2229. }
  2230. ],
  2231. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2232. "keywords": [
  2233. "csprng",
  2234. "polyfill",
  2235. "pseudorandom",
  2236. "random"
  2237. ]
  2238. },
  2239. {
  2240. "name": "phpoffice/phpexcel",
  2241. "version": "1.8.2",
  2242. "version_normalized": "1.8.2.0",
  2243. "source": {
  2244. "type": "git",
  2245. "url": "https://github.com/PHPOffice/PHPExcel.git",
  2246. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  2247. },
  2248. "dist": {
  2249. "type": "zip",
  2250. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2251. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2252. "shasum": "",
  2253. "mirrors": [
  2254. {
  2255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2256. "preferred": true
  2257. }
  2258. ]
  2259. },
  2260. "require": {
  2261. "ext-mbstring": "*",
  2262. "ext-xml": "*",
  2263. "ext-xmlwriter": "*",
  2264. "php": "^5.2|^7.0"
  2265. },
  2266. "require-dev": {
  2267. "squizlabs/php_codesniffer": "2.*"
  2268. },
  2269. "time": "2018-11-22T23:07:24+00:00",
  2270. "type": "library",
  2271. "installation-source": "dist",
  2272. "autoload": {
  2273. "psr-0": {
  2274. "PHPExcel": "Classes/"
  2275. }
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "LGPL-2.1"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Maarten Balliauw",
  2284. "homepage": "http://blog.maartenballiauw.be"
  2285. },
  2286. {
  2287. "name": "Erik Tilt"
  2288. },
  2289. {
  2290. "name": "Franck Lefevre",
  2291. "homepage": "http://rootslabs.net"
  2292. },
  2293. {
  2294. "name": "Mark Baker",
  2295. "homepage": "http://markbakeruk.net"
  2296. }
  2297. ],
  2298. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2299. "homepage": "https://github.com/PHPOffice/PHPExcel",
  2300. "keywords": [
  2301. "OpenXML",
  2302. "excel",
  2303. "php",
  2304. "spreadsheet",
  2305. "xls",
  2306. "xlsx"
  2307. ],
  2308. "abandoned": "phpoffice/phpspreadsheet"
  2309. },
  2310. {
  2311. "name": "phpoffice/phpspreadsheet",
  2312. "version": "1.14.1",
  2313. "version_normalized": "1.14.1.0",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2317. "reference": "2383aad5689778470491581442aab38cec41bf1d"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2383aad5689778470491581442aab38cec41bf1d",
  2322. "reference": "2383aad5689778470491581442aab38cec41bf1d",
  2323. "shasum": "",
  2324. "mirrors": [
  2325. {
  2326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2327. "preferred": true
  2328. }
  2329. ]
  2330. },
  2331. "require": {
  2332. "ext-ctype": "*",
  2333. "ext-dom": "*",
  2334. "ext-fileinfo": "*",
  2335. "ext-gd": "*",
  2336. "ext-iconv": "*",
  2337. "ext-libxml": "*",
  2338. "ext-mbstring": "*",
  2339. "ext-simplexml": "*",
  2340. "ext-xml": "*",
  2341. "ext-xmlreader": "*",
  2342. "ext-xmlwriter": "*",
  2343. "ext-zip": "*",
  2344. "ext-zlib": "*",
  2345. "maennchen/zipstream-php": "^2.1",
  2346. "markbaker/complex": "^1.4",
  2347. "markbaker/matrix": "^1.2",
  2348. "php": "^7.2",
  2349. "psr/http-client": "^1.0",
  2350. "psr/http-factory": "^1.0",
  2351. "psr/simple-cache": "^1.0"
  2352. },
  2353. "require-dev": {
  2354. "dompdf/dompdf": "^0.8.5",
  2355. "friendsofphp/php-cs-fixer": "^2.16",
  2356. "jpgraph/jpgraph": "^4.0",
  2357. "mpdf/mpdf": "^8.0",
  2358. "phpcompatibility/php-compatibility": "^9.3",
  2359. "phpunit/phpunit": "^8.5",
  2360. "squizlabs/php_codesniffer": "^3.5",
  2361. "tecnickcom/tcpdf": "^6.3"
  2362. },
  2363. "suggest": {
  2364. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  2365. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2366. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2367. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  2368. },
  2369. "time": "2020-07-19T09:51:35+00:00",
  2370. "type": "library",
  2371. "installation-source": "dist",
  2372. "autoload": {
  2373. "psr-4": {
  2374. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2375. }
  2376. },
  2377. "notification-url": "https://packagist.org/downloads/",
  2378. "license": [
  2379. "MIT"
  2380. ],
  2381. "authors": [
  2382. {
  2383. "name": "Maarten Balliauw",
  2384. "homepage": "https://blog.maartenballiauw.be"
  2385. },
  2386. {
  2387. "name": "Mark Baker",
  2388. "homepage": "https://markbakeruk.net"
  2389. },
  2390. {
  2391. "name": "Franck Lefevre",
  2392. "homepage": "https://rootslabs.net"
  2393. },
  2394. {
  2395. "name": "Erik Tilt"
  2396. },
  2397. {
  2398. "name": "Adrien Crivelli"
  2399. }
  2400. ],
  2401. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2402. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2403. "keywords": [
  2404. "OpenXML",
  2405. "excel",
  2406. "gnumeric",
  2407. "ods",
  2408. "php",
  2409. "spreadsheet",
  2410. "xls",
  2411. "xlsx"
  2412. ]
  2413. },
  2414. {
  2415. "name": "pimple/pimple",
  2416. "version": "v3.3.0",
  2417. "version_normalized": "3.3.0.0",
  2418. "source": {
  2419. "type": "git",
  2420. "url": "https://github.com/silexphp/Pimple.git",
  2421. "reference": "e55d12f9d6a0e7f9c85992b73df1267f46279930"
  2422. },
  2423. "dist": {
  2424. "type": "zip",
  2425. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/e55d12f9d6a0e7f9c85992b73df1267f46279930",
  2426. "reference": "e55d12f9d6a0e7f9c85992b73df1267f46279930",
  2427. "shasum": "",
  2428. "mirrors": [
  2429. {
  2430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2431. "preferred": true
  2432. }
  2433. ]
  2434. },
  2435. "require": {
  2436. "php": "^7.2.5",
  2437. "psr/container": "^1.0"
  2438. },
  2439. "require-dev": {
  2440. "symfony/phpunit-bridge": "^3.4|^4.4|^5.0"
  2441. },
  2442. "time": "2020-03-03T09:12:48+00:00",
  2443. "type": "library",
  2444. "extra": {
  2445. "branch-alias": {
  2446. "dev-master": "3.3.x-dev"
  2447. }
  2448. },
  2449. "installation-source": "dist",
  2450. "autoload": {
  2451. "psr-0": {
  2452. "Pimple": "src/"
  2453. }
  2454. },
  2455. "notification-url": "https://packagist.org/downloads/",
  2456. "license": [
  2457. "MIT"
  2458. ],
  2459. "authors": [
  2460. {
  2461. "name": "Fabien Potencier",
  2462. "email": "fabien@symfony.com"
  2463. }
  2464. ],
  2465. "description": "Pimple, a simple Dependency Injection Container",
  2466. "homepage": "https://pimple.symfony.com",
  2467. "keywords": [
  2468. "container",
  2469. "dependency injection"
  2470. ]
  2471. },
  2472. {
  2473. "name": "psr/cache",
  2474. "version": "1.0.1",
  2475. "version_normalized": "1.0.1.0",
  2476. "source": {
  2477. "type": "git",
  2478. "url": "https://github.com/php-fig/cache.git",
  2479. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2480. },
  2481. "dist": {
  2482. "type": "zip",
  2483. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2484. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2485. "shasum": "",
  2486. "mirrors": [
  2487. {
  2488. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2489. "preferred": true
  2490. }
  2491. ]
  2492. },
  2493. "require": {
  2494. "php": ">=5.3.0"
  2495. },
  2496. "time": "2016-08-06T20:24:11+00:00",
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "1.0.x-dev"
  2501. }
  2502. },
  2503. "installation-source": "dist",
  2504. "autoload": {
  2505. "psr-4": {
  2506. "Psr\\Cache\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "PHP-FIG",
  2516. "homepage": "http://www.php-fig.org/"
  2517. }
  2518. ],
  2519. "description": "Common interface for caching libraries",
  2520. "keywords": [
  2521. "cache",
  2522. "psr",
  2523. "psr-6"
  2524. ]
  2525. },
  2526. {
  2527. "name": "psr/container",
  2528. "version": "1.0.0",
  2529. "version_normalized": "1.0.0.0",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/php-fig/container.git",
  2533. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2538. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  2539. "shasum": "",
  2540. "mirrors": [
  2541. {
  2542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2543. "preferred": true
  2544. }
  2545. ]
  2546. },
  2547. "require": {
  2548. "php": ">=5.3.0"
  2549. },
  2550. "time": "2017-02-14T16:28:37+00:00",
  2551. "type": "library",
  2552. "extra": {
  2553. "branch-alias": {
  2554. "dev-master": "1.0.x-dev"
  2555. }
  2556. },
  2557. "installation-source": "dist",
  2558. "autoload": {
  2559. "psr-4": {
  2560. "Psr\\Container\\": "src/"
  2561. }
  2562. },
  2563. "notification-url": "https://packagist.org/downloads/",
  2564. "license": [
  2565. "MIT"
  2566. ],
  2567. "authors": [
  2568. {
  2569. "name": "PHP-FIG",
  2570. "homepage": "http://www.php-fig.org/"
  2571. }
  2572. ],
  2573. "description": "Common Container Interface (PHP FIG PSR-11)",
  2574. "homepage": "https://github.com/php-fig/container",
  2575. "keywords": [
  2576. "PSR-11",
  2577. "container",
  2578. "container-interface",
  2579. "container-interop",
  2580. "psr"
  2581. ]
  2582. },
  2583. {
  2584. "name": "psr/http-client",
  2585. "version": "1.0.1",
  2586. "version_normalized": "1.0.1.0",
  2587. "source": {
  2588. "type": "git",
  2589. "url": "https://github.com/php-fig/http-client.git",
  2590. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2591. },
  2592. "dist": {
  2593. "type": "zip",
  2594. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2595. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2596. "shasum": "",
  2597. "mirrors": [
  2598. {
  2599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2600. "preferred": true
  2601. }
  2602. ]
  2603. },
  2604. "require": {
  2605. "php": "^7.0 || ^8.0",
  2606. "psr/http-message": "^1.0"
  2607. },
  2608. "time": "2020-06-29T06:28:15+00:00",
  2609. "type": "library",
  2610. "extra": {
  2611. "branch-alias": {
  2612. "dev-master": "1.0.x-dev"
  2613. }
  2614. },
  2615. "installation-source": "dist",
  2616. "autoload": {
  2617. "psr-4": {
  2618. "Psr\\Http\\Client\\": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "PHP-FIG",
  2628. "homepage": "http://www.php-fig.org/"
  2629. }
  2630. ],
  2631. "description": "Common interface for HTTP clients",
  2632. "homepage": "https://github.com/php-fig/http-client",
  2633. "keywords": [
  2634. "http",
  2635. "http-client",
  2636. "psr",
  2637. "psr-18"
  2638. ]
  2639. },
  2640. {
  2641. "name": "psr/http-factory",
  2642. "version": "1.0.1",
  2643. "version_normalized": "1.0.1.0",
  2644. "source": {
  2645. "type": "git",
  2646. "url": "https://github.com/php-fig/http-factory.git",
  2647. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2648. },
  2649. "dist": {
  2650. "type": "zip",
  2651. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2652. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2653. "shasum": "",
  2654. "mirrors": [
  2655. {
  2656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2657. "preferred": true
  2658. }
  2659. ]
  2660. },
  2661. "require": {
  2662. "php": ">=7.0.0",
  2663. "psr/http-message": "^1.0"
  2664. },
  2665. "time": "2019-04-30T12:38:16+00:00",
  2666. "type": "library",
  2667. "extra": {
  2668. "branch-alias": {
  2669. "dev-master": "1.0.x-dev"
  2670. }
  2671. },
  2672. "installation-source": "dist",
  2673. "autoload": {
  2674. "psr-4": {
  2675. "Psr\\Http\\Message\\": "src/"
  2676. }
  2677. },
  2678. "notification-url": "https://packagist.org/downloads/",
  2679. "license": [
  2680. "MIT"
  2681. ],
  2682. "authors": [
  2683. {
  2684. "name": "PHP-FIG",
  2685. "homepage": "http://www.php-fig.org/"
  2686. }
  2687. ],
  2688. "description": "Common interfaces for PSR-7 HTTP message factories",
  2689. "keywords": [
  2690. "factory",
  2691. "http",
  2692. "message",
  2693. "psr",
  2694. "psr-17",
  2695. "psr-7",
  2696. "request",
  2697. "response"
  2698. ]
  2699. },
  2700. {
  2701. "name": "psr/http-message",
  2702. "version": "1.0.1",
  2703. "version_normalized": "1.0.1.0",
  2704. "source": {
  2705. "type": "git",
  2706. "url": "https://github.com/php-fig/http-message.git",
  2707. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2708. },
  2709. "dist": {
  2710. "type": "zip",
  2711. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2712. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2713. "shasum": "",
  2714. "mirrors": [
  2715. {
  2716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2717. "preferred": true
  2718. }
  2719. ]
  2720. },
  2721. "require": {
  2722. "php": ">=5.3.0"
  2723. },
  2724. "time": "2016-08-06T14:39:51+00:00",
  2725. "type": "library",
  2726. "extra": {
  2727. "branch-alias": {
  2728. "dev-master": "1.0.x-dev"
  2729. }
  2730. },
  2731. "installation-source": "dist",
  2732. "autoload": {
  2733. "psr-4": {
  2734. "Psr\\Http\\Message\\": "src/"
  2735. }
  2736. },
  2737. "notification-url": "https://packagist.org/downloads/",
  2738. "license": [
  2739. "MIT"
  2740. ],
  2741. "authors": [
  2742. {
  2743. "name": "PHP-FIG",
  2744. "homepage": "http://www.php-fig.org/"
  2745. }
  2746. ],
  2747. "description": "Common interface for HTTP messages",
  2748. "homepage": "https://github.com/php-fig/http-message",
  2749. "keywords": [
  2750. "http",
  2751. "http-message",
  2752. "psr",
  2753. "psr-7",
  2754. "request",
  2755. "response"
  2756. ]
  2757. },
  2758. {
  2759. "name": "psr/log",
  2760. "version": "1.1.2",
  2761. "version_normalized": "1.1.2.0",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/php-fig/log.git",
  2765. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2770. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2771. "shasum": "",
  2772. "mirrors": [
  2773. {
  2774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2775. "preferred": true
  2776. }
  2777. ]
  2778. },
  2779. "require": {
  2780. "php": ">=5.3.0"
  2781. },
  2782. "time": "2019-11-01T11:05:21+00:00",
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "1.1.x-dev"
  2787. }
  2788. },
  2789. "installation-source": "dist",
  2790. "autoload": {
  2791. "psr-4": {
  2792. "Psr\\Log\\": "Psr/Log/"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "PHP-FIG",
  2802. "homepage": "http://www.php-fig.org/"
  2803. }
  2804. ],
  2805. "description": "Common interface for logging libraries",
  2806. "homepage": "https://github.com/php-fig/log",
  2807. "keywords": [
  2808. "log",
  2809. "psr",
  2810. "psr-3"
  2811. ]
  2812. },
  2813. {
  2814. "name": "psr/simple-cache",
  2815. "version": "1.0.1",
  2816. "version_normalized": "1.0.1.0",
  2817. "source": {
  2818. "type": "git",
  2819. "url": "https://github.com/php-fig/simple-cache.git",
  2820. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2821. },
  2822. "dist": {
  2823. "type": "zip",
  2824. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2825. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2826. "shasum": "",
  2827. "mirrors": [
  2828. {
  2829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2830. "preferred": true
  2831. }
  2832. ]
  2833. },
  2834. "require": {
  2835. "php": ">=5.3.0"
  2836. },
  2837. "time": "2017-10-23T01:57:42+00:00",
  2838. "type": "library",
  2839. "extra": {
  2840. "branch-alias": {
  2841. "dev-master": "1.0.x-dev"
  2842. }
  2843. },
  2844. "installation-source": "dist",
  2845. "autoload": {
  2846. "psr-4": {
  2847. "Psr\\SimpleCache\\": "src/"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "PHP-FIG",
  2857. "homepage": "http://www.php-fig.org/"
  2858. }
  2859. ],
  2860. "description": "Common interfaces for simple caching",
  2861. "keywords": [
  2862. "cache",
  2863. "caching",
  2864. "psr",
  2865. "psr-16",
  2866. "simple-cache"
  2867. ]
  2868. },
  2869. {
  2870. "name": "qcloud/cos-sdk-v5",
  2871. "version": "v1.3.4",
  2872. "version_normalized": "1.3.4.0",
  2873. "source": {
  2874. "type": "git",
  2875. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2876. "reference": "1b32aa422f6dffe4ea411e5095e4b0da9135551b"
  2877. },
  2878. "dist": {
  2879. "type": "zip",
  2880. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/1b32aa422f6dffe4ea411e5095e4b0da9135551b",
  2881. "reference": "1b32aa422f6dffe4ea411e5095e4b0da9135551b",
  2882. "shasum": "",
  2883. "mirrors": [
  2884. {
  2885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2886. "preferred": true
  2887. }
  2888. ]
  2889. },
  2890. "require": {
  2891. "guzzle/guzzle": "~3.7",
  2892. "php": ">=5.3.0"
  2893. },
  2894. "time": "2019-09-02T12:08:44+00:00",
  2895. "type": "library",
  2896. "installation-source": "dist",
  2897. "autoload": {
  2898. "psr-0": {
  2899. "Qcloud\\Cos\\": "src/"
  2900. }
  2901. },
  2902. "notification-url": "https://packagist.org/downloads/",
  2903. "license": [
  2904. "MIT"
  2905. ],
  2906. "authors": [
  2907. {
  2908. "name": "yaozongyou",
  2909. "email": "yaozongyou@vip.qq.com"
  2910. },
  2911. {
  2912. "name": "lewzylu",
  2913. "email": "327874225@qq.com"
  2914. }
  2915. ],
  2916. "description": "PHP SDK for QCloud COS",
  2917. "keywords": [
  2918. "cos",
  2919. "php",
  2920. "qcloud"
  2921. ]
  2922. },
  2923. {
  2924. "name": "qiniu/php-sdk",
  2925. "version": "v7.2.10",
  2926. "version_normalized": "7.2.10.0",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/qiniu/php-sdk.git",
  2930. "reference": "d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8",
  2935. "reference": "d89987163f560ebf9dfa5bb25de9bd9b1a3b2bd8",
  2936. "shasum": "",
  2937. "mirrors": [
  2938. {
  2939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2940. "preferred": true
  2941. }
  2942. ]
  2943. },
  2944. "require": {
  2945. "php": ">=5.3.3"
  2946. },
  2947. "require-dev": {
  2948. "phpunit/phpunit": "~4.0",
  2949. "squizlabs/php_codesniffer": "~2.3"
  2950. },
  2951. "time": "2019-10-28T10:23:23+00:00",
  2952. "type": "library",
  2953. "installation-source": "dist",
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Qiniu\\": "src/Qiniu"
  2957. },
  2958. "files": [
  2959. "src/Qiniu/functions.php"
  2960. ]
  2961. },
  2962. "notification-url": "https://packagist.org/downloads/",
  2963. "license": [
  2964. "MIT"
  2965. ],
  2966. "authors": [
  2967. {
  2968. "name": "Qiniu",
  2969. "email": "sdk@qiniu.com",
  2970. "homepage": "http://www.qiniu.com"
  2971. }
  2972. ],
  2973. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2974. "homepage": "http://developer.qiniu.com/",
  2975. "keywords": [
  2976. "cloud",
  2977. "qiniu",
  2978. "sdk",
  2979. "storage"
  2980. ]
  2981. },
  2982. {
  2983. "name": "ralouphie/getallheaders",
  2984. "version": "3.0.3",
  2985. "version_normalized": "3.0.3.0",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/ralouphie/getallheaders.git",
  2989. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2994. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2995. "shasum": "",
  2996. "mirrors": [
  2997. {
  2998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2999. "preferred": true
  3000. }
  3001. ]
  3002. },
  3003. "require": {
  3004. "php": ">=5.6"
  3005. },
  3006. "require-dev": {
  3007. "php-coveralls/php-coveralls": "^2.1",
  3008. "phpunit/phpunit": "^5 || ^6.5"
  3009. },
  3010. "time": "2019-03-08T08:55:37+00:00",
  3011. "type": "library",
  3012. "installation-source": "dist",
  3013. "autoload": {
  3014. "files": [
  3015. "src/getallheaders.php"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "MIT"
  3021. ],
  3022. "authors": [
  3023. {
  3024. "name": "Ralph Khattar",
  3025. "email": "ralph.khattar@gmail.com"
  3026. }
  3027. ],
  3028. "description": "A polyfill for getallheaders."
  3029. },
  3030. {
  3031. "name": "riverslei/payment",
  3032. "version": "v5.1.0",
  3033. "version_normalized": "5.1.0.0",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/helei112g/payment.git",
  3037. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/helei112g/payment/zipball/77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3042. "reference": "77f671b68b0285a6af77dc7c5afa36eabcae35aa",
  3043. "shasum": "",
  3044. "mirrors": [
  3045. {
  3046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3047. "preferred": true
  3048. }
  3049. ]
  3050. },
  3051. "require": {
  3052. "ext-bcmath": "*",
  3053. "ext-json": "*",
  3054. "ext-mbstring": "*",
  3055. "ext-openssl": "*",
  3056. "ext-simplexml": "*",
  3057. "ext-xml": "*",
  3058. "guzzlehttp/guzzle": "~6.0",
  3059. "php": ">=7.0"
  3060. },
  3061. "require-dev": {
  3062. "codeception/codeception": "*"
  3063. },
  3064. "time": "2020-05-04T03:07:17+00:00",
  3065. "type": "library",
  3066. "installation-source": "dist",
  3067. "autoload": {
  3068. "psr-4": {
  3069. "Payment\\": "src/"
  3070. }
  3071. },
  3072. "notification-url": "https://packagist.org/downloads/",
  3073. "license": [
  3074. "MIT"
  3075. ],
  3076. "authors": [
  3077. {
  3078. "name": "Leo",
  3079. "email": "dayugog@gmail.com",
  3080. "homepage": "https://dayutalk.cn"
  3081. }
  3082. ],
  3083. "description": "支付宝支付、微信支付、招商一网通支付php SDK。方便快速接入,最完整的开源支付 php sdk",
  3084. "homepage": "http://helei112g.github.io/payment",
  3085. "keywords": [
  3086. "alipay",
  3087. "weixin",
  3088. "一网通",
  3089. "微信支付",
  3090. "招商一网通",
  3091. "支付宝支付",
  3092. "集成支付接口SDK"
  3093. ]
  3094. },
  3095. {
  3096. "name": "swoole/ide-helper",
  3097. "version": "4.4.14",
  3098. "version_normalized": "4.4.14.0",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/swoole/ide-helper.git",
  3102. "reference": "d52d22addfdc877de807cc85e2d8ad8a3b17ad17"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d52d22addfdc877de807cc85e2d8ad8a3b17ad17",
  3107. "reference": "d52d22addfdc877de807cc85e2d8ad8a3b17ad17",
  3108. "shasum": "",
  3109. "mirrors": [
  3110. {
  3111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3112. "preferred": true
  3113. }
  3114. ]
  3115. },
  3116. "require-dev": {
  3117. "guzzlehttp/guzzle": "~6.5.0",
  3118. "squizlabs/php_codesniffer": "~3.5.0",
  3119. "symfony/filesystem": "~4.3.0",
  3120. "zendframework/zend-code": "~3.3.0"
  3121. },
  3122. "time": "2019-12-30T05:31:26+00:00",
  3123. "type": "library",
  3124. "installation-source": "dist",
  3125. "notification-url": "https://packagist.org/downloads/",
  3126. "license": [
  3127. "Apache-2.0"
  3128. ],
  3129. "authors": [
  3130. {
  3131. "name": "Team Swoole",
  3132. "email": "team@swoole.com"
  3133. }
  3134. ],
  3135. "description": "IDE help files for Swoole."
  3136. },
  3137. {
  3138. "name": "symfony/deprecation-contracts",
  3139. "version": "v2.1.2",
  3140. "version_normalized": "2.1.2.0",
  3141. "source": {
  3142. "type": "git",
  3143. "url": "https://github.com/symfony/deprecation-contracts.git",
  3144. "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337"
  3145. },
  3146. "dist": {
  3147. "type": "zip",
  3148. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
  3149. "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337",
  3150. "shasum": "",
  3151. "mirrors": [
  3152. {
  3153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3154. "preferred": true
  3155. }
  3156. ]
  3157. },
  3158. "require": {
  3159. "php": ">=7.1"
  3160. },
  3161. "time": "2020-05-27T08:34:37+00:00",
  3162. "type": "library",
  3163. "extra": {
  3164. "branch-alias": {
  3165. "dev-master": "2.1-dev"
  3166. }
  3167. },
  3168. "installation-source": "dist",
  3169. "autoload": {
  3170. "files": [
  3171. "function.php"
  3172. ]
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Nicolas Grekas",
  3181. "email": "p@tchwork.com"
  3182. },
  3183. {
  3184. "name": "Symfony Community",
  3185. "homepage": "https://symfony.com/contributors"
  3186. }
  3187. ],
  3188. "description": "A generic function and convention to trigger deprecation notices",
  3189. "homepage": "https://symfony.com"
  3190. },
  3191. {
  3192. "name": "symfony/event-dispatcher",
  3193. "version": "v2.8.52",
  3194. "version_normalized": "2.8.52.0",
  3195. "source": {
  3196. "type": "git",
  3197. "url": "https://github.com/symfony/event-dispatcher.git",
  3198. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  3199. },
  3200. "dist": {
  3201. "type": "zip",
  3202. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3203. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  3204. "shasum": "",
  3205. "mirrors": [
  3206. {
  3207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3208. "preferred": true
  3209. }
  3210. ]
  3211. },
  3212. "require": {
  3213. "php": ">=5.3.9"
  3214. },
  3215. "require-dev": {
  3216. "psr/log": "~1.0",
  3217. "symfony/config": "^2.0.5|~3.0.0",
  3218. "symfony/dependency-injection": "~2.6|~3.0.0",
  3219. "symfony/expression-language": "~2.6|~3.0.0",
  3220. "symfony/stopwatch": "~2.3|~3.0.0"
  3221. },
  3222. "suggest": {
  3223. "symfony/dependency-injection": "",
  3224. "symfony/http-kernel": ""
  3225. },
  3226. "time": "2018-11-21T14:20:20+00:00",
  3227. "type": "library",
  3228. "extra": {
  3229. "branch-alias": {
  3230. "dev-master": "2.8-dev"
  3231. }
  3232. },
  3233. "installation-source": "dist",
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Symfony\\Component\\EventDispatcher\\": ""
  3237. },
  3238. "exclude-from-classmap": [
  3239. "/Tests/"
  3240. ]
  3241. },
  3242. "notification-url": "https://packagist.org/downloads/",
  3243. "license": [
  3244. "MIT"
  3245. ],
  3246. "authors": [
  3247. {
  3248. "name": "Fabien Potencier",
  3249. "email": "fabien@symfony.com"
  3250. },
  3251. {
  3252. "name": "Symfony Community",
  3253. "homepage": "https://symfony.com/contributors"
  3254. }
  3255. ],
  3256. "description": "Symfony EventDispatcher Component",
  3257. "homepage": "https://symfony.com"
  3258. },
  3259. {
  3260. "name": "symfony/finder",
  3261. "version": "v4.4.5",
  3262. "version_normalized": "4.4.5.0",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://github.com/symfony/finder.git",
  3266. "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://api.github.com/repos/symfony/finder/zipball/ea69c129aed9fdeca781d4b77eb20b62cf5d5357",
  3271. "reference": "ea69c129aed9fdeca781d4b77eb20b62cf5d5357",
  3272. "shasum": "",
  3273. "mirrors": [
  3274. {
  3275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3276. "preferred": true
  3277. }
  3278. ]
  3279. },
  3280. "require": {
  3281. "php": "^7.1.3"
  3282. },
  3283. "time": "2020-02-14T07:42:58+00:00",
  3284. "type": "library",
  3285. "extra": {
  3286. "branch-alias": {
  3287. "dev-master": "4.4-dev"
  3288. }
  3289. },
  3290. "installation-source": "dist",
  3291. "autoload": {
  3292. "psr-4": {
  3293. "Symfony\\Component\\Finder\\": ""
  3294. },
  3295. "exclude-from-classmap": [
  3296. "/Tests/"
  3297. ]
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Fabien Potencier",
  3306. "email": "fabien@symfony.com"
  3307. },
  3308. {
  3309. "name": "Symfony Community",
  3310. "homepage": "https://symfony.com/contributors"
  3311. }
  3312. ],
  3313. "description": "Symfony Finder Component",
  3314. "homepage": "https://symfony.com"
  3315. },
  3316. {
  3317. "name": "symfony/http-foundation",
  3318. "version": "v3.4.38",
  3319. "version_normalized": "3.4.38.0",
  3320. "source": {
  3321. "type": "git",
  3322. "url": "https://github.com/symfony/http-foundation.git",
  3323. "reference": "4d440be93adcfd5e4ee0bdc7acd1c3260625728f"
  3324. },
  3325. "dist": {
  3326. "type": "zip",
  3327. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4d440be93adcfd5e4ee0bdc7acd1c3260625728f",
  3328. "reference": "4d440be93adcfd5e4ee0bdc7acd1c3260625728f",
  3329. "shasum": "",
  3330. "mirrors": [
  3331. {
  3332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3333. "preferred": true
  3334. }
  3335. ]
  3336. },
  3337. "require": {
  3338. "php": "^5.5.9|>=7.0.8",
  3339. "symfony/polyfill-mbstring": "~1.1",
  3340. "symfony/polyfill-php70": "~1.6"
  3341. },
  3342. "require-dev": {
  3343. "symfony/expression-language": "~2.8|~3.0|~4.0"
  3344. },
  3345. "time": "2020-02-06T08:18:51+00:00",
  3346. "type": "library",
  3347. "extra": {
  3348. "branch-alias": {
  3349. "dev-master": "3.4-dev"
  3350. }
  3351. },
  3352. "installation-source": "dist",
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Symfony\\Component\\HttpFoundation\\": ""
  3356. },
  3357. "exclude-from-classmap": [
  3358. "/Tests/"
  3359. ]
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "Fabien Potencier",
  3368. "email": "fabien@symfony.com"
  3369. },
  3370. {
  3371. "name": "Symfony Community",
  3372. "homepage": "https://symfony.com/contributors"
  3373. }
  3374. ],
  3375. "description": "Symfony HttpFoundation Component",
  3376. "homepage": "https://symfony.com"
  3377. },
  3378. {
  3379. "name": "symfony/inflector",
  3380. "version": "v5.1.2",
  3381. "version_normalized": "5.1.2.0",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/symfony/inflector.git",
  3385. "reference": "fddb4262dd136b34db993a2a3488713df91e4856"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/symfony/inflector/zipball/fddb4262dd136b34db993a2a3488713df91e4856",
  3390. "reference": "fddb4262dd136b34db993a2a3488713df91e4856",
  3391. "shasum": "",
  3392. "mirrors": [
  3393. {
  3394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3395. "preferred": true
  3396. }
  3397. ]
  3398. },
  3399. "require": {
  3400. "php": ">=7.2.5",
  3401. "symfony/deprecation-contracts": "^2.1",
  3402. "symfony/string": "^5.1"
  3403. },
  3404. "time": "2020-05-20T17:43:50+00:00",
  3405. "type": "library",
  3406. "extra": {
  3407. "branch-alias": {
  3408. "dev-master": "5.1-dev"
  3409. }
  3410. },
  3411. "installation-source": "dist",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Symfony\\Component\\Inflector\\": ""
  3415. },
  3416. "exclude-from-classmap": [
  3417. "/Tests/"
  3418. ]
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Bernhard Schussek",
  3427. "email": "bschussek@gmail.com"
  3428. },
  3429. {
  3430. "name": "Symfony Community",
  3431. "homepage": "https://symfony.com/contributors"
  3432. }
  3433. ],
  3434. "description": "Symfony Inflector Component",
  3435. "homepage": "https://symfony.com",
  3436. "keywords": [
  3437. "inflection",
  3438. "pluralize",
  3439. "singularize",
  3440. "string",
  3441. "symfony",
  3442. "words"
  3443. ]
  3444. },
  3445. {
  3446. "name": "symfony/options-resolver",
  3447. "version": "v5.1.2",
  3448. "version_normalized": "5.1.2.0",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/symfony/options-resolver.git",
  3452. "reference": "663f5dd5e14057d1954fe721f9709d35837f2447"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/663f5dd5e14057d1954fe721f9709d35837f2447",
  3457. "reference": "663f5dd5e14057d1954fe721f9709d35837f2447",
  3458. "shasum": "",
  3459. "mirrors": [
  3460. {
  3461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3462. "preferred": true
  3463. }
  3464. ]
  3465. },
  3466. "require": {
  3467. "php": ">=7.2.5",
  3468. "symfony/deprecation-contracts": "^2.1",
  3469. "symfony/polyfill-php80": "^1.15"
  3470. },
  3471. "time": "2020-05-23T13:08:13+00:00",
  3472. "type": "library",
  3473. "extra": {
  3474. "branch-alias": {
  3475. "dev-master": "5.1-dev"
  3476. }
  3477. },
  3478. "installation-source": "dist",
  3479. "autoload": {
  3480. "psr-4": {
  3481. "Symfony\\Component\\OptionsResolver\\": ""
  3482. },
  3483. "exclude-from-classmap": [
  3484. "/Tests/"
  3485. ]
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Fabien Potencier",
  3494. "email": "fabien@symfony.com"
  3495. },
  3496. {
  3497. "name": "Symfony Community",
  3498. "homepage": "https://symfony.com/contributors"
  3499. }
  3500. ],
  3501. "description": "Symfony OptionsResolver Component",
  3502. "homepage": "https://symfony.com",
  3503. "keywords": [
  3504. "config",
  3505. "configuration",
  3506. "options"
  3507. ]
  3508. },
  3509. {
  3510. "name": "symfony/polyfill-ctype",
  3511. "version": "v1.17.0",
  3512. "version_normalized": "1.17.0.0",
  3513. "source": {
  3514. "type": "git",
  3515. "url": "https://github.com/symfony/polyfill-ctype.git",
  3516. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  3517. },
  3518. "dist": {
  3519. "type": "zip",
  3520. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  3521. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  3522. "shasum": "",
  3523. "mirrors": [
  3524. {
  3525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3526. "preferred": true
  3527. }
  3528. ]
  3529. },
  3530. "require": {
  3531. "php": ">=5.3.3"
  3532. },
  3533. "suggest": {
  3534. "ext-ctype": "For best performance"
  3535. },
  3536. "time": "2020-05-12T16:14:59+00:00",
  3537. "type": "library",
  3538. "extra": {
  3539. "branch-alias": {
  3540. "dev-master": "1.17-dev"
  3541. }
  3542. },
  3543. "installation-source": "dist",
  3544. "autoload": {
  3545. "psr-4": {
  3546. "Symfony\\Polyfill\\Ctype\\": ""
  3547. },
  3548. "files": [
  3549. "bootstrap.php"
  3550. ]
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "MIT"
  3555. ],
  3556. "authors": [
  3557. {
  3558. "name": "Gert de Pagter",
  3559. "email": "BackEndTea@gmail.com"
  3560. },
  3561. {
  3562. "name": "Symfony Community",
  3563. "homepage": "https://symfony.com/contributors"
  3564. }
  3565. ],
  3566. "description": "Symfony polyfill for ctype functions",
  3567. "homepage": "https://symfony.com",
  3568. "keywords": [
  3569. "compatibility",
  3570. "ctype",
  3571. "polyfill",
  3572. "portable"
  3573. ]
  3574. },
  3575. {
  3576. "name": "symfony/polyfill-intl-grapheme",
  3577. "version": "v1.17.0",
  3578. "version_normalized": "1.17.0.0",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3582. "reference": "e094b0770f7833fdf257e6ba4775be4e258230b2"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e094b0770f7833fdf257e6ba4775be4e258230b2",
  3587. "reference": "e094b0770f7833fdf257e6ba4775be4e258230b2",
  3588. "shasum": "",
  3589. "mirrors": [
  3590. {
  3591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3592. "preferred": true
  3593. }
  3594. ]
  3595. },
  3596. "require": {
  3597. "php": ">=5.3.3"
  3598. },
  3599. "suggest": {
  3600. "ext-intl": "For best performance"
  3601. },
  3602. "time": "2020-05-12T16:47:27+00:00",
  3603. "type": "library",
  3604. "extra": {
  3605. "branch-alias": {
  3606. "dev-master": "1.17-dev"
  3607. }
  3608. },
  3609. "installation-source": "dist",
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3613. },
  3614. "files": [
  3615. "bootstrap.php"
  3616. ]
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Nicolas Grekas",
  3625. "email": "p@tchwork.com"
  3626. },
  3627. {
  3628. "name": "Symfony Community",
  3629. "homepage": "https://symfony.com/contributors"
  3630. }
  3631. ],
  3632. "description": "Symfony polyfill for intl's grapheme_* functions",
  3633. "homepage": "https://symfony.com",
  3634. "keywords": [
  3635. "compatibility",
  3636. "grapheme",
  3637. "intl",
  3638. "polyfill",
  3639. "portable",
  3640. "shim"
  3641. ]
  3642. },
  3643. {
  3644. "name": "symfony/polyfill-intl-normalizer",
  3645. "version": "v1.17.0",
  3646. "version_normalized": "1.17.0.0",
  3647. "source": {
  3648. "type": "git",
  3649. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3650. "reference": "1357b1d168eb7f68ad6a134838e46b0b159444a9"
  3651. },
  3652. "dist": {
  3653. "type": "zip",
  3654. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/1357b1d168eb7f68ad6a134838e46b0b159444a9",
  3655. "reference": "1357b1d168eb7f68ad6a134838e46b0b159444a9",
  3656. "shasum": "",
  3657. "mirrors": [
  3658. {
  3659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3660. "preferred": true
  3661. }
  3662. ]
  3663. },
  3664. "require": {
  3665. "php": ">=5.3.3"
  3666. },
  3667. "suggest": {
  3668. "ext-intl": "For best performance"
  3669. },
  3670. "time": "2020-05-12T16:14:59+00:00",
  3671. "type": "library",
  3672. "extra": {
  3673. "branch-alias": {
  3674. "dev-master": "1.17-dev"
  3675. }
  3676. },
  3677. "installation-source": "dist",
  3678. "autoload": {
  3679. "psr-4": {
  3680. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3681. },
  3682. "files": [
  3683. "bootstrap.php"
  3684. ],
  3685. "classmap": [
  3686. "Resources/stubs"
  3687. ]
  3688. },
  3689. "notification-url": "https://packagist.org/downloads/",
  3690. "license": [
  3691. "MIT"
  3692. ],
  3693. "authors": [
  3694. {
  3695. "name": "Nicolas Grekas",
  3696. "email": "p@tchwork.com"
  3697. },
  3698. {
  3699. "name": "Symfony Community",
  3700. "homepage": "https://symfony.com/contributors"
  3701. }
  3702. ],
  3703. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3704. "homepage": "https://symfony.com",
  3705. "keywords": [
  3706. "compatibility",
  3707. "intl",
  3708. "normalizer",
  3709. "polyfill",
  3710. "portable",
  3711. "shim"
  3712. ]
  3713. },
  3714. {
  3715. "name": "symfony/polyfill-mbstring",
  3716. "version": "v1.14.0",
  3717. "version_normalized": "1.14.0.0",
  3718. "source": {
  3719. "type": "git",
  3720. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3721. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  3722. },
  3723. "dist": {
  3724. "type": "zip",
  3725. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  3726. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  3727. "shasum": "",
  3728. "mirrors": [
  3729. {
  3730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3731. "preferred": true
  3732. }
  3733. ]
  3734. },
  3735. "require": {
  3736. "php": ">=5.3.3"
  3737. },
  3738. "suggest": {
  3739. "ext-mbstring": "For best performance"
  3740. },
  3741. "time": "2020-01-13T11:15:53+00:00",
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "1.14-dev"
  3746. }
  3747. },
  3748. "installation-source": "dist",
  3749. "autoload": {
  3750. "psr-4": {
  3751. "Symfony\\Polyfill\\Mbstring\\": ""
  3752. },
  3753. "files": [
  3754. "bootstrap.php"
  3755. ]
  3756. },
  3757. "notification-url": "https://packagist.org/downloads/",
  3758. "license": [
  3759. "MIT"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "Nicolas Grekas",
  3764. "email": "p@tchwork.com"
  3765. },
  3766. {
  3767. "name": "Symfony Community",
  3768. "homepage": "https://symfony.com/contributors"
  3769. }
  3770. ],
  3771. "description": "Symfony polyfill for the Mbstring extension",
  3772. "homepage": "https://symfony.com",
  3773. "keywords": [
  3774. "compatibility",
  3775. "mbstring",
  3776. "polyfill",
  3777. "portable",
  3778. "shim"
  3779. ]
  3780. },
  3781. {
  3782. "name": "symfony/polyfill-php70",
  3783. "version": "v1.14.0",
  3784. "version_normalized": "1.14.0.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/symfony/polyfill-php70.git",
  3788. "reference": "419c4940024c30ccc033650373a1fe13890d3255"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/419c4940024c30ccc033650373a1fe13890d3255",
  3793. "reference": "419c4940024c30ccc033650373a1fe13890d3255",
  3794. "shasum": "",
  3795. "mirrors": [
  3796. {
  3797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3798. "preferred": true
  3799. }
  3800. ]
  3801. },
  3802. "require": {
  3803. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  3804. "php": ">=5.3.3"
  3805. },
  3806. "time": "2020-01-13T11:15:53+00:00",
  3807. "type": "library",
  3808. "extra": {
  3809. "branch-alias": {
  3810. "dev-master": "1.14-dev"
  3811. }
  3812. },
  3813. "installation-source": "dist",
  3814. "autoload": {
  3815. "psr-4": {
  3816. "Symfony\\Polyfill\\Php70\\": ""
  3817. },
  3818. "files": [
  3819. "bootstrap.php"
  3820. ],
  3821. "classmap": [
  3822. "Resources/stubs"
  3823. ]
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "MIT"
  3828. ],
  3829. "authors": [
  3830. {
  3831. "name": "Nicolas Grekas",
  3832. "email": "p@tchwork.com"
  3833. },
  3834. {
  3835. "name": "Symfony Community",
  3836. "homepage": "https://symfony.com/contributors"
  3837. }
  3838. ],
  3839. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  3840. "homepage": "https://symfony.com",
  3841. "keywords": [
  3842. "compatibility",
  3843. "polyfill",
  3844. "portable",
  3845. "shim"
  3846. ]
  3847. },
  3848. {
  3849. "name": "symfony/polyfill-php72",
  3850. "version": "v1.14.0",
  3851. "version_normalized": "1.14.0.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://github.com/symfony/polyfill-php72.git",
  3855. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  3860. "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf",
  3861. "shasum": "",
  3862. "mirrors": [
  3863. {
  3864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3865. "preferred": true
  3866. }
  3867. ]
  3868. },
  3869. "require": {
  3870. "php": ">=5.3.3"
  3871. },
  3872. "time": "2020-01-13T11:15:53+00:00",
  3873. "type": "library",
  3874. "extra": {
  3875. "branch-alias": {
  3876. "dev-master": "1.14-dev"
  3877. }
  3878. },
  3879. "installation-source": "dist",
  3880. "autoload": {
  3881. "psr-4": {
  3882. "Symfony\\Polyfill\\Php72\\": ""
  3883. },
  3884. "files": [
  3885. "bootstrap.php"
  3886. ]
  3887. },
  3888. "notification-url": "https://packagist.org/downloads/",
  3889. "license": [
  3890. "MIT"
  3891. ],
  3892. "authors": [
  3893. {
  3894. "name": "Nicolas Grekas",
  3895. "email": "p@tchwork.com"
  3896. },
  3897. {
  3898. "name": "Symfony Community",
  3899. "homepage": "https://symfony.com/contributors"
  3900. }
  3901. ],
  3902. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3903. "homepage": "https://symfony.com",
  3904. "keywords": [
  3905. "compatibility",
  3906. "polyfill",
  3907. "portable",
  3908. "shim"
  3909. ]
  3910. },
  3911. {
  3912. "name": "symfony/polyfill-php80",
  3913. "version": "v1.17.0",
  3914. "version_normalized": "1.17.0.0",
  3915. "source": {
  3916. "type": "git",
  3917. "url": "https://github.com/symfony/polyfill-php80.git",
  3918. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd"
  3919. },
  3920. "dist": {
  3921. "type": "zip",
  3922. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd",
  3923. "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd",
  3924. "shasum": "",
  3925. "mirrors": [
  3926. {
  3927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3928. "preferred": true
  3929. }
  3930. ]
  3931. },
  3932. "require": {
  3933. "php": ">=7.0.8"
  3934. },
  3935. "time": "2020-05-12T16:47:27+00:00",
  3936. "type": "library",
  3937. "extra": {
  3938. "branch-alias": {
  3939. "dev-master": "1.17-dev"
  3940. }
  3941. },
  3942. "installation-source": "dist",
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Symfony\\Polyfill\\Php80\\": ""
  3946. },
  3947. "files": [
  3948. "bootstrap.php"
  3949. ],
  3950. "classmap": [
  3951. "Resources/stubs"
  3952. ]
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Ion Bazan",
  3961. "email": "ion.bazan@gmail.com"
  3962. },
  3963. {
  3964. "name": "Nicolas Grekas",
  3965. "email": "p@tchwork.com"
  3966. },
  3967. {
  3968. "name": "Symfony Community",
  3969. "homepage": "https://symfony.com/contributors"
  3970. }
  3971. ],
  3972. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3973. "homepage": "https://symfony.com",
  3974. "keywords": [
  3975. "compatibility",
  3976. "polyfill",
  3977. "portable",
  3978. "shim"
  3979. ]
  3980. },
  3981. {
  3982. "name": "symfony/process",
  3983. "version": "v4.4.5",
  3984. "version_normalized": "4.4.5.0",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/symfony/process.git",
  3988. "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/symfony/process/zipball/bf9166bac906c9e69fb7a11d94875e7ced97bcd7",
  3993. "reference": "bf9166bac906c9e69fb7a11d94875e7ced97bcd7",
  3994. "shasum": "",
  3995. "mirrors": [
  3996. {
  3997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3998. "preferred": true
  3999. }
  4000. ]
  4001. },
  4002. "require": {
  4003. "php": "^7.1.3"
  4004. },
  4005. "time": "2020-02-07T20:06:44+00:00",
  4006. "type": "library",
  4007. "extra": {
  4008. "branch-alias": {
  4009. "dev-master": "4.4-dev"
  4010. }
  4011. },
  4012. "installation-source": "dist",
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Symfony\\Component\\Process\\": ""
  4016. },
  4017. "exclude-from-classmap": [
  4018. "/Tests/"
  4019. ]
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Fabien Potencier",
  4028. "email": "fabien@symfony.com"
  4029. },
  4030. {
  4031. "name": "Symfony Community",
  4032. "homepage": "https://symfony.com/contributors"
  4033. }
  4034. ],
  4035. "description": "Symfony Process Component",
  4036. "homepage": "https://symfony.com"
  4037. },
  4038. {
  4039. "name": "symfony/property-access",
  4040. "version": "v5.1.2",
  4041. "version_normalized": "5.1.2.0",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/symfony/property-access.git",
  4045. "reference": "638b96246da68810484a5a46ff397e9326f42afc"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/symfony/property-access/zipball/638b96246da68810484a5a46ff397e9326f42afc",
  4050. "reference": "638b96246da68810484a5a46ff397e9326f42afc",
  4051. "shasum": "",
  4052. "mirrors": [
  4053. {
  4054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4055. "preferred": true
  4056. }
  4057. ]
  4058. },
  4059. "require": {
  4060. "php": ">=7.2.5",
  4061. "symfony/inflector": "^4.4|^5.0",
  4062. "symfony/polyfill-php80": "^1.15",
  4063. "symfony/property-info": "^5.1.1"
  4064. },
  4065. "require-dev": {
  4066. "symfony/cache": "^4.4|^5.0"
  4067. },
  4068. "suggest": {
  4069. "psr/cache-implementation": "To cache access methods."
  4070. },
  4071. "time": "2020-06-04T09:56:18+00:00",
  4072. "type": "library",
  4073. "extra": {
  4074. "branch-alias": {
  4075. "dev-master": "5.1-dev"
  4076. }
  4077. },
  4078. "installation-source": "dist",
  4079. "autoload": {
  4080. "psr-4": {
  4081. "Symfony\\Component\\PropertyAccess\\": ""
  4082. },
  4083. "exclude-from-classmap": [
  4084. "/Tests/"
  4085. ]
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "authors": [
  4092. {
  4093. "name": "Fabien Potencier",
  4094. "email": "fabien@symfony.com"
  4095. },
  4096. {
  4097. "name": "Symfony Community",
  4098. "homepage": "https://symfony.com/contributors"
  4099. }
  4100. ],
  4101. "description": "Symfony PropertyAccess Component",
  4102. "homepage": "https://symfony.com",
  4103. "keywords": [
  4104. "access",
  4105. "array",
  4106. "extraction",
  4107. "index",
  4108. "injection",
  4109. "object",
  4110. "property",
  4111. "property path",
  4112. "reflection"
  4113. ]
  4114. },
  4115. {
  4116. "name": "symfony/property-info",
  4117. "version": "v5.1.2",
  4118. "version_normalized": "5.1.2.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/symfony/property-info.git",
  4122. "reference": "75d79faca45092829b55eb83f73068e34c6567c5"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/symfony/property-info/zipball/75d79faca45092829b55eb83f73068e34c6567c5",
  4127. "reference": "75d79faca45092829b55eb83f73068e34c6567c5",
  4128. "shasum": "",
  4129. "mirrors": [
  4130. {
  4131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4132. "preferred": true
  4133. }
  4134. ]
  4135. },
  4136. "require": {
  4137. "php": ">=7.2.5",
  4138. "symfony/polyfill-php80": "^1.15",
  4139. "symfony/string": "^5.1"
  4140. },
  4141. "conflict": {
  4142. "phpdocumentor/reflection-docblock": "<3.2.2",
  4143. "phpdocumentor/type-resolver": "<0.3.0",
  4144. "symfony/dependency-injection": "<4.4"
  4145. },
  4146. "require-dev": {
  4147. "doctrine/annotations": "~1.7",
  4148. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4149. "symfony/cache": "^4.4|^5.0",
  4150. "symfony/dependency-injection": "^4.4|^5.0",
  4151. "symfony/serializer": "^4.4|^5.0"
  4152. },
  4153. "suggest": {
  4154. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4155. "psr/cache-implementation": "To cache results",
  4156. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4157. "symfony/serializer": "To use Serializer metadata"
  4158. },
  4159. "time": "2020-06-15T11:50:15+00:00",
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "5.1-dev"
  4164. }
  4165. },
  4166. "installation-source": "dist",
  4167. "autoload": {
  4168. "psr-4": {
  4169. "Symfony\\Component\\PropertyInfo\\": ""
  4170. },
  4171. "exclude-from-classmap": [
  4172. "/Tests/"
  4173. ]
  4174. },
  4175. "notification-url": "https://packagist.org/downloads/",
  4176. "license": [
  4177. "MIT"
  4178. ],
  4179. "authors": [
  4180. {
  4181. "name": "Kévin Dunglas",
  4182. "email": "dunglas@gmail.com"
  4183. },
  4184. {
  4185. "name": "Symfony Community",
  4186. "homepage": "https://symfony.com/contributors"
  4187. }
  4188. ],
  4189. "description": "Symfony Property Info Component",
  4190. "homepage": "https://symfony.com",
  4191. "keywords": [
  4192. "doctrine",
  4193. "phpdoc",
  4194. "property",
  4195. "symfony",
  4196. "type",
  4197. "validator"
  4198. ]
  4199. },
  4200. {
  4201. "name": "symfony/psr-http-message-bridge",
  4202. "version": "v1.2.0",
  4203. "version_normalized": "1.2.0.0",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4207. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4212. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  4213. "shasum": "",
  4214. "mirrors": [
  4215. {
  4216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4217. "preferred": true
  4218. }
  4219. ]
  4220. },
  4221. "require": {
  4222. "php": "^7.1",
  4223. "psr/http-message": "^1.0",
  4224. "symfony/http-foundation": "^3.4 || ^4.0"
  4225. },
  4226. "require-dev": {
  4227. "nyholm/psr7": "^1.1",
  4228. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  4229. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  4230. },
  4231. "suggest": {
  4232. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4233. },
  4234. "time": "2019-03-11T18:22:33+00:00",
  4235. "type": "symfony-bridge",
  4236. "extra": {
  4237. "branch-alias": {
  4238. "dev-master": "1.2-dev"
  4239. }
  4240. },
  4241. "installation-source": "dist",
  4242. "autoload": {
  4243. "psr-4": {
  4244. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4245. },
  4246. "exclude-from-classmap": [
  4247. "/Tests/"
  4248. ]
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Symfony Community",
  4257. "homepage": "http://symfony.com/contributors"
  4258. },
  4259. {
  4260. "name": "Fabien Potencier",
  4261. "email": "fabien@symfony.com"
  4262. }
  4263. ],
  4264. "description": "PSR HTTP message bridge",
  4265. "homepage": "http://symfony.com",
  4266. "keywords": [
  4267. "http",
  4268. "http-message",
  4269. "psr-17",
  4270. "psr-7"
  4271. ]
  4272. },
  4273. {
  4274. "name": "symfony/string",
  4275. "version": "v5.1.2",
  4276. "version_normalized": "5.1.2.0",
  4277. "source": {
  4278. "type": "git",
  4279. "url": "https://github.com/symfony/string.git",
  4280. "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298"
  4281. },
  4282. "dist": {
  4283. "type": "zip",
  4284. "url": "https://api.github.com/repos/symfony/string/zipball/ac70459db781108db7c6d8981dd31ce0e29e3298",
  4285. "reference": "ac70459db781108db7c6d8981dd31ce0e29e3298",
  4286. "shasum": "",
  4287. "mirrors": [
  4288. {
  4289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4290. "preferred": true
  4291. }
  4292. ]
  4293. },
  4294. "require": {
  4295. "php": ">=7.2.5",
  4296. "symfony/polyfill-ctype": "~1.8",
  4297. "symfony/polyfill-intl-grapheme": "~1.0",
  4298. "symfony/polyfill-intl-normalizer": "~1.0",
  4299. "symfony/polyfill-mbstring": "~1.0",
  4300. "symfony/polyfill-php80": "~1.15"
  4301. },
  4302. "require-dev": {
  4303. "symfony/error-handler": "^4.4|^5.0",
  4304. "symfony/http-client": "^4.4|^5.0",
  4305. "symfony/translation-contracts": "^1.1|^2",
  4306. "symfony/var-exporter": "^4.4|^5.0"
  4307. },
  4308. "time": "2020-06-11T12:16:36+00:00",
  4309. "type": "library",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-master": "5.1-dev"
  4313. }
  4314. },
  4315. "installation-source": "dist",
  4316. "autoload": {
  4317. "psr-4": {
  4318. "Symfony\\Component\\String\\": ""
  4319. },
  4320. "files": [
  4321. "Resources/functions.php"
  4322. ],
  4323. "exclude-from-classmap": [
  4324. "/Tests/"
  4325. ]
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Nicolas Grekas",
  4334. "email": "p@tchwork.com"
  4335. },
  4336. {
  4337. "name": "Symfony Community",
  4338. "homepage": "https://symfony.com/contributors"
  4339. }
  4340. ],
  4341. "description": "Symfony String component",
  4342. "homepage": "https://symfony.com",
  4343. "keywords": [
  4344. "grapheme",
  4345. "i18n",
  4346. "string",
  4347. "unicode",
  4348. "utf-8",
  4349. "utf8"
  4350. ]
  4351. },
  4352. {
  4353. "name": "symfony/translation",
  4354. "version": "v5.0.5",
  4355. "version_normalized": "5.0.5.0",
  4356. "source": {
  4357. "type": "git",
  4358. "url": "https://github.com/symfony/translation.git",
  4359. "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b"
  4360. },
  4361. "dist": {
  4362. "type": "zip",
  4363. "url": "https://api.github.com/repos/symfony/translation/zipball/e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
  4364. "reference": "e9b93f42a1fd6aec6a0872d59ee5c8219a7d584b",
  4365. "shasum": "",
  4366. "mirrors": [
  4367. {
  4368. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4369. "preferred": true
  4370. }
  4371. ]
  4372. },
  4373. "require": {
  4374. "php": "^7.2.5",
  4375. "symfony/polyfill-mbstring": "~1.0",
  4376. "symfony/translation-contracts": "^2"
  4377. },
  4378. "conflict": {
  4379. "symfony/config": "<4.4",
  4380. "symfony/dependency-injection": "<5.0",
  4381. "symfony/http-kernel": "<5.0",
  4382. "symfony/twig-bundle": "<5.0",
  4383. "symfony/yaml": "<4.4"
  4384. },
  4385. "provide": {
  4386. "symfony/translation-implementation": "2.0"
  4387. },
  4388. "require-dev": {
  4389. "psr/log": "~1.0",
  4390. "symfony/config": "^4.4|^5.0",
  4391. "symfony/console": "^4.4|^5.0",
  4392. "symfony/dependency-injection": "^5.0",
  4393. "symfony/finder": "^4.4|^5.0",
  4394. "symfony/http-kernel": "^5.0",
  4395. "symfony/intl": "^4.4|^5.0",
  4396. "symfony/service-contracts": "^1.1.2|^2",
  4397. "symfony/yaml": "^4.4|^5.0"
  4398. },
  4399. "suggest": {
  4400. "psr/log-implementation": "To use logging capability in translator",
  4401. "symfony/config": "",
  4402. "symfony/yaml": ""
  4403. },
  4404. "time": "2020-02-04T07:41:34+00:00",
  4405. "type": "library",
  4406. "extra": {
  4407. "branch-alias": {
  4408. "dev-master": "5.0-dev"
  4409. }
  4410. },
  4411. "installation-source": "dist",
  4412. "autoload": {
  4413. "psr-4": {
  4414. "Symfony\\Component\\Translation\\": ""
  4415. },
  4416. "exclude-from-classmap": [
  4417. "/Tests/"
  4418. ]
  4419. },
  4420. "notification-url": "https://packagist.org/downloads/",
  4421. "license": [
  4422. "MIT"
  4423. ],
  4424. "authors": [
  4425. {
  4426. "name": "Fabien Potencier",
  4427. "email": "fabien@symfony.com"
  4428. },
  4429. {
  4430. "name": "Symfony Community",
  4431. "homepage": "https://symfony.com/contributors"
  4432. }
  4433. ],
  4434. "description": "Symfony Translation Component",
  4435. "homepage": "https://symfony.com"
  4436. },
  4437. {
  4438. "name": "symfony/translation-contracts",
  4439. "version": "v2.0.1",
  4440. "version_normalized": "2.0.1.0",
  4441. "source": {
  4442. "type": "git",
  4443. "url": "https://github.com/symfony/translation-contracts.git",
  4444. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed"
  4445. },
  4446. "dist": {
  4447. "type": "zip",
  4448. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  4449. "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed",
  4450. "shasum": "",
  4451. "mirrors": [
  4452. {
  4453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4454. "preferred": true
  4455. }
  4456. ]
  4457. },
  4458. "require": {
  4459. "php": "^7.2.5"
  4460. },
  4461. "suggest": {
  4462. "symfony/translation-implementation": ""
  4463. },
  4464. "time": "2019-11-18T17:27:11+00:00",
  4465. "type": "library",
  4466. "extra": {
  4467. "branch-alias": {
  4468. "dev-master": "2.0-dev"
  4469. }
  4470. },
  4471. "installation-source": "dist",
  4472. "autoload": {
  4473. "psr-4": {
  4474. "Symfony\\Contracts\\Translation\\": ""
  4475. }
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "MIT"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "Nicolas Grekas",
  4484. "email": "p@tchwork.com"
  4485. },
  4486. {
  4487. "name": "Symfony Community",
  4488. "homepage": "https://symfony.com/contributors"
  4489. }
  4490. ],
  4491. "description": "Generic abstractions related to translation",
  4492. "homepage": "https://symfony.com",
  4493. "keywords": [
  4494. "abstractions",
  4495. "contracts",
  4496. "decoupling",
  4497. "interfaces",
  4498. "interoperability",
  4499. "standards"
  4500. ]
  4501. },
  4502. {
  4503. "name": "symfony/var-dumper",
  4504. "version": "v4.4.5",
  4505. "version_normalized": "4.4.5.0",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://github.com/symfony/var-dumper.git",
  4509. "reference": "2572839911702b0405479410ea7a1334bfab0b96"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2572839911702b0405479410ea7a1334bfab0b96",
  4514. "reference": "2572839911702b0405479410ea7a1334bfab0b96",
  4515. "shasum": "",
  4516. "mirrors": [
  4517. {
  4518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4519. "preferred": true
  4520. }
  4521. ]
  4522. },
  4523. "require": {
  4524. "php": "^7.1.3",
  4525. "symfony/polyfill-mbstring": "~1.0",
  4526. "symfony/polyfill-php72": "~1.5"
  4527. },
  4528. "conflict": {
  4529. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4530. "symfony/console": "<3.4"
  4531. },
  4532. "require-dev": {
  4533. "ext-iconv": "*",
  4534. "symfony/console": "^3.4|^4.0|^5.0",
  4535. "symfony/process": "^4.4|^5.0",
  4536. "twig/twig": "^1.34|^2.4|^3.0"
  4537. },
  4538. "suggest": {
  4539. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4540. "ext-intl": "To show region name in time zone dump",
  4541. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4542. },
  4543. "time": "2020-02-24T13:10:00+00:00",
  4544. "bin": [
  4545. "Resources/bin/var-dump-server"
  4546. ],
  4547. "type": "library",
  4548. "extra": {
  4549. "branch-alias": {
  4550. "dev-master": "4.4-dev"
  4551. }
  4552. },
  4553. "installation-source": "dist",
  4554. "autoload": {
  4555. "files": [
  4556. "Resources/functions/dump.php"
  4557. ],
  4558. "psr-4": {
  4559. "Symfony\\Component\\VarDumper\\": ""
  4560. },
  4561. "exclude-from-classmap": [
  4562. "/Tests/"
  4563. ]
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Nicolas Grekas",
  4572. "email": "p@tchwork.com"
  4573. },
  4574. {
  4575. "name": "Symfony Community",
  4576. "homepage": "https://symfony.com/contributors"
  4577. }
  4578. ],
  4579. "description": "Symfony mechanism for exploring and dumping PHP variables",
  4580. "homepage": "https://symfony.com",
  4581. "keywords": [
  4582. "debug",
  4583. "dump"
  4584. ]
  4585. },
  4586. {
  4587. "name": "topthink/framework",
  4588. "version": "v6.0.7",
  4589. "version_normalized": "6.0.7.0",
  4590. "source": {
  4591. "type": "git",
  4592. "url": "https://github.com/top-think/framework.git",
  4593. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270"
  4594. },
  4595. "dist": {
  4596. "type": "zip",
  4597. "url": "https://api.github.com/repos/top-think/framework/zipball/db8fe22520a9660dd5e4c87e304034ac49e39270",
  4598. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270",
  4599. "shasum": "",
  4600. "mirrors": [
  4601. {
  4602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4603. "preferred": true
  4604. }
  4605. ]
  4606. },
  4607. "require": {
  4608. "ext-json": "*",
  4609. "ext-mbstring": "*",
  4610. "league/flysystem": "^1.0",
  4611. "league/flysystem-cached-adapter": "^1.0",
  4612. "php": ">=7.1.0",
  4613. "psr/container": "~1.0",
  4614. "psr/log": "~1.0",
  4615. "psr/simple-cache": "^1.0",
  4616. "topthink/think-helper": "^3.1.1",
  4617. "topthink/think-orm": "^2.0"
  4618. },
  4619. "require-dev": {
  4620. "mikey179/vfsstream": "^1.6",
  4621. "mockery/mockery": "^1.2",
  4622. "phpunit/phpunit": "^7.0"
  4623. },
  4624. "time": "2021-01-25T14:48:29+00:00",
  4625. "type": "library",
  4626. "installation-source": "dist",
  4627. "autoload": {
  4628. "files": [],
  4629. "psr-4": {
  4630. "think\\": "src/think/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "Apache-2.0"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "liu21st",
  4640. "email": "liu21st@gmail.com"
  4641. },
  4642. {
  4643. "name": "yunwuxin",
  4644. "email": "448901948@qq.com"
  4645. }
  4646. ],
  4647. "description": "The ThinkPHP Framework.",
  4648. "homepage": "http://thinkphp.cn/",
  4649. "keywords": [
  4650. "framework",
  4651. "orm",
  4652. "thinkphp"
  4653. ]
  4654. },
  4655. {
  4656. "name": "topthink/think-factory",
  4657. "version": "v1.0.1",
  4658. "version_normalized": "1.0.1.0",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/top-think/think-factory.git",
  4662. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4667. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  4668. "shasum": "",
  4669. "mirrors": [
  4670. {
  4671. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4672. "preferred": true
  4673. }
  4674. ]
  4675. },
  4676. "require": {
  4677. "topthink/framework": "^6.0.0",
  4678. "topthink/think-helper": "^3.0.0"
  4679. },
  4680. "time": "2019-04-15T06:55:28+00:00",
  4681. "type": "library",
  4682. "installation-source": "dist",
  4683. "autoload": {
  4684. "psr-4": {
  4685. "think\\": "src"
  4686. }
  4687. },
  4688. "notification-url": "https://packagist.org/downloads/",
  4689. "license": [
  4690. "Apache-2.0"
  4691. ],
  4692. "authors": [
  4693. {
  4694. "name": "yunwuxin",
  4695. "email": "448901948@qq.com"
  4696. }
  4697. ],
  4698. "abandoned": true
  4699. },
  4700. {
  4701. "name": "topthink/think-helper",
  4702. "version": "v3.1.3",
  4703. "version_normalized": "3.1.3.0",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/top-think/think-helper.git",
  4707. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  4712. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  4713. "shasum": "",
  4714. "mirrors": [
  4715. {
  4716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4717. "preferred": true
  4718. }
  4719. ]
  4720. },
  4721. "require": {
  4722. "php": ">=7.1.0"
  4723. },
  4724. "time": "2019-09-30T02:36:48+00:00",
  4725. "type": "library",
  4726. "installation-source": "dist",
  4727. "autoload": {
  4728. "psr-4": {
  4729. "think\\": "src"
  4730. },
  4731. "files": [
  4732. "src/helper.php"
  4733. ]
  4734. },
  4735. "notification-url": "https://packagist.org/downloads/",
  4736. "license": [
  4737. "Apache-2.0"
  4738. ],
  4739. "authors": [
  4740. {
  4741. "name": "yunwuxin",
  4742. "email": "448901948@qq.com"
  4743. }
  4744. ],
  4745. "description": "The ThinkPHP6 Helper Package"
  4746. },
  4747. {
  4748. "name": "topthink/think-image",
  4749. "version": "v1.0.7",
  4750. "version_normalized": "1.0.7.0",
  4751. "source": {
  4752. "type": "git",
  4753. "url": "https://github.com/top-think/think-image.git",
  4754. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  4755. },
  4756. "dist": {
  4757. "type": "zip",
  4758. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  4759. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  4760. "shasum": "",
  4761. "mirrors": [
  4762. {
  4763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4764. "preferred": true
  4765. }
  4766. ]
  4767. },
  4768. "require": {
  4769. "ext-gd": "*"
  4770. },
  4771. "require-dev": {
  4772. "phpunit/phpunit": "4.8.*",
  4773. "topthink/framework": "^5.0"
  4774. },
  4775. "time": "2016-09-29T06:05:43+00:00",
  4776. "type": "library",
  4777. "installation-source": "dist",
  4778. "autoload": {
  4779. "psr-4": {
  4780. "think\\": "src"
  4781. }
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "Apache-2.0"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "yunwuxin",
  4790. "email": "448901948@qq.com"
  4791. }
  4792. ],
  4793. "description": "The ThinkPHP5 Image Package"
  4794. },
  4795. {
  4796. "name": "topthink/think-orm",
  4797. "version": "v2.0.39",
  4798. "version_normalized": "2.0.39.0",
  4799. "source": {
  4800. "type": "git",
  4801. "url": "https://github.com/top-think/think-orm.git",
  4802. "reference": "39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7"
  4803. },
  4804. "dist": {
  4805. "type": "zip",
  4806. "url": "https://api.github.com/repos/top-think/think-orm/zipball/39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7",
  4807. "reference": "39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7",
  4808. "shasum": "",
  4809. "mirrors": [
  4810. {
  4811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4812. "preferred": true
  4813. }
  4814. ]
  4815. },
  4816. "require": {
  4817. "ext-json": "*",
  4818. "ext-pdo": "*",
  4819. "php": ">=7.1.0",
  4820. "psr/log": "~1.0",
  4821. "psr/simple-cache": "^1.0",
  4822. "topthink/think-helper": "^3.1"
  4823. },
  4824. "require-dev": {
  4825. "phpunit/phpunit": "^7|^8|^9.5"
  4826. },
  4827. "time": "2021-02-26T10:20:00+00:00",
  4828. "type": "library",
  4829. "installation-source": "dist",
  4830. "autoload": {
  4831. "psr-4": {
  4832. "think\\": "src"
  4833. },
  4834. "files": [
  4835. "stubs/load_stubs.php"
  4836. ]
  4837. },
  4838. "notification-url": "https://packagist.org/downloads/",
  4839. "license": [
  4840. "Apache-2.0"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "liu21st",
  4845. "email": "liu21st@gmail.com"
  4846. }
  4847. ],
  4848. "description": "think orm",
  4849. "keywords": [
  4850. "database",
  4851. "orm"
  4852. ]
  4853. },
  4854. {
  4855. "name": "topthink/think-queue",
  4856. "version": "v3.0.4",
  4857. "version_normalized": "3.0.4.0",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://github.com/top-think/think-queue.git",
  4861. "reference": "a993295b68a483dc3cb2c0fee05683908fa2572e"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://api.github.com/repos/top-think/think-queue/zipball/a993295b68a483dc3cb2c0fee05683908fa2572e",
  4866. "reference": "a993295b68a483dc3cb2c0fee05683908fa2572e",
  4867. "shasum": "",
  4868. "mirrors": [
  4869. {
  4870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4871. "preferred": true
  4872. }
  4873. ]
  4874. },
  4875. "require": {
  4876. "ext-json": "*",
  4877. "nesbot/carbon": "^2.16",
  4878. "symfony/process": "^4.2",
  4879. "topthink/framework": "^6.0.0",
  4880. "topthink/think-factory": "^1.0.0",
  4881. "topthink/think-helper": "^3.0.4"
  4882. },
  4883. "require-dev": {
  4884. "mockery/mockery": "^1.2",
  4885. "phpunit/phpunit": "^6.2",
  4886. "topthink/think-migration": "^3.0.0"
  4887. },
  4888. "time": "2019-10-13T03:51:32+00:00",
  4889. "type": "library",
  4890. "extra": {
  4891. "think": {
  4892. "services": [
  4893. "think\\queue\\Service"
  4894. ],
  4895. "config": {
  4896. "queue": "src/config.php"
  4897. }
  4898. }
  4899. },
  4900. "installation-source": "dist",
  4901. "autoload": {
  4902. "psr-4": {
  4903. "think\\": "src"
  4904. },
  4905. "files": [
  4906. "src/common.php"
  4907. ]
  4908. },
  4909. "notification-url": "https://packagist.org/downloads/",
  4910. "license": [
  4911. "Apache-2.0"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "yunwuxin",
  4916. "email": "448901948@qq.com"
  4917. }
  4918. ],
  4919. "description": "The ThinkPHP5 Queue Package"
  4920. },
  4921. {
  4922. "name": "topthink/think-swoole",
  4923. "version": "v3.1.2",
  4924. "version_normalized": "3.1.2.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://github.com/top-think/think-swoole.git",
  4928. "reference": "eb7f78b7eb53dde79257f4254fe61f9514f3c7d8"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/eb7f78b7eb53dde79257f4254fe61f9514f3c7d8",
  4933. "reference": "eb7f78b7eb53dde79257f4254fe61f9514f3c7d8",
  4934. "shasum": "",
  4935. "mirrors": [
  4936. {
  4937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4938. "preferred": true
  4939. }
  4940. ]
  4941. },
  4942. "require": {
  4943. "ext-json": "*",
  4944. "ext-swoole": ">=4.4.8",
  4945. "nette/php-generator": "^3.2",
  4946. "open-smf/connection-pool": "~1.0",
  4947. "php": ">7.1",
  4948. "swoole/ide-helper": "^4.3",
  4949. "symfony/finder": "^4.3.2|^5.1",
  4950. "topthink/framework": "^6.0"
  4951. },
  4952. "require-dev": {
  4953. "symfony/var-dumper": "^4.3|^5.1",
  4954. "topthink/think-tracing": "^1.0"
  4955. },
  4956. "time": "2021-02-02T07:26:09+00:00",
  4957. "type": "library",
  4958. "extra": {
  4959. "think": {
  4960. "services": [
  4961. "think\\swoole\\Service"
  4962. ],
  4963. "config": {
  4964. "swoole": "src/config/swoole.php"
  4965. }
  4966. }
  4967. },
  4968. "installation-source": "dist",
  4969. "autoload": {
  4970. "psr-4": {
  4971. "think\\swoole\\": "src"
  4972. },
  4973. "files": [
  4974. "src/helpers.php"
  4975. ]
  4976. },
  4977. "notification-url": "https://packagist.org/downloads/",
  4978. "license": [
  4979. "Apache-2.0"
  4980. ],
  4981. "authors": [
  4982. {
  4983. "name": "liu21st",
  4984. "email": "liu21st@gmail.com"
  4985. }
  4986. ],
  4987. "description": "Swoole extend for thinkphp"
  4988. },
  4989. {
  4990. "name": "topthink/think-trace",
  4991. "version": "v1.2",
  4992. "version_normalized": "1.2.0.0",
  4993. "source": {
  4994. "type": "git",
  4995. "url": "https://github.com/top-think/think-trace.git",
  4996. "reference": "4589d06a07945d57478cc2236f4b23d51ff919cc"
  4997. },
  4998. "dist": {
  4999. "type": "zip",
  5000. "url": "https://api.github.com/repos/top-think/think-trace/zipball/4589d06a07945d57478cc2236f4b23d51ff919cc",
  5001. "reference": "4589d06a07945d57478cc2236f4b23d51ff919cc",
  5002. "shasum": "",
  5003. "mirrors": [
  5004. {
  5005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5006. "preferred": true
  5007. }
  5008. ]
  5009. },
  5010. "require": {
  5011. "php": ">=7.1.0",
  5012. "topthink/framework": "^6.0.0"
  5013. },
  5014. "time": "2019-10-17T02:14:09+00:00",
  5015. "type": "library",
  5016. "extra": {
  5017. "think": {
  5018. "services": [
  5019. "think\\trace\\Service"
  5020. ],
  5021. "config": {
  5022. "trace": "src/config.php"
  5023. }
  5024. }
  5025. },
  5026. "installation-source": "dist",
  5027. "autoload": {
  5028. "psr-4": {
  5029. "think\\trace\\": "src"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "Apache-2.0"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "liu21st",
  5039. "email": "liu21st@gmail.com"
  5040. }
  5041. ],
  5042. "description": "thinkphp debug trace"
  5043. },
  5044. {
  5045. "name": "xaboy/form-builder",
  5046. "version": "2.0.15",
  5047. "version_normalized": "2.0.15.0",
  5048. "source": {
  5049. "type": "git",
  5050. "url": "https://github.com/xaboy/form-builder.git",
  5051. "reference": "20cf96927c7aed273dd0db5b2c7c83f56e535bf1"
  5052. },
  5053. "dist": {
  5054. "type": "zip",
  5055. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/20cf96927c7aed273dd0db5b2c7c83f56e535bf1",
  5056. "reference": "20cf96927c7aed273dd0db5b2c7c83f56e535bf1",
  5057. "shasum": "",
  5058. "mirrors": [
  5059. {
  5060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5061. "preferred": true
  5062. }
  5063. ]
  5064. },
  5065. "require": {
  5066. "doctrine/annotations": "1.2.7",
  5067. "ext-json": "*",
  5068. "php": ">=5.4.0",
  5069. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0|~4.0"
  5070. },
  5071. "time": "2020-04-15T09:57:04+00:00",
  5072. "type": "library",
  5073. "installation-source": "dist",
  5074. "autoload": {
  5075. "psr-4": {
  5076. "FormBuilder\\": "./src/"
  5077. }
  5078. },
  5079. "notification-url": "https://packagist.org/downloads/",
  5080. "license": [
  5081. "MIT"
  5082. ],
  5083. "authors": [
  5084. {
  5085. "name": "xaboy",
  5086. "email": "xaboy2005@qq.com"
  5087. }
  5088. ],
  5089. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  5090. "homepage": "https://github.com/xaboy/form-builder",
  5091. "keywords": [
  5092. "dynamic-form",
  5093. "element-ui",
  5094. "form",
  5095. "form-create",
  5096. "form-generator",
  5097. "iview"
  5098. ]
  5099. }
  5100. ]