composer.lock 191 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "822465491f14cc81d50f4b690eba7049",
  8. "packages": [
  9. {
  10. "name": "alfredo-ramos/parsedown-extra-laravel",
  11. "version": "0.8.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/AlfredoRamos/parsedown-extra-laravel.git",
  15. "reference": "d63fa264f5e0de36fc7591ea7741ca2d23556a66"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/AlfredoRamos/parsedown-extra-laravel/zipball/d63fa264f5e0de36fc7591ea7741ca2d23556a66",
  20. "reference": "d63fa264f5e0de36fc7591ea7741ca2d23556a66",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "erusev/parsedown": "^1.7.0 || ^1.8.0-beta-5",
  31. "erusev/parsedown-extra": "^0.7.0 || ^0.8.0-beta-1",
  32. "ezyang/htmlpurifier": "^4.10.0",
  33. "illuminate/config": "^5.5.0",
  34. "illuminate/filesystem": "^5.5.0",
  35. "illuminate/support": "^5.5.0",
  36. "php": "^7.0.0"
  37. },
  38. "require-dev": {
  39. "codacy/coverage": "^1.4.0",
  40. "mockery/mockery": "^1.1.0",
  41. "orchestra/testbench": "^3.5.0",
  42. "phpunit/phpunit": "^6.5.0 || ^7.3.0"
  43. },
  44. "suggest": {
  45. "laravel/framework": "To integrate with Laravel",
  46. "laravel/lumen-framework": "To integrate with Lumen"
  47. },
  48. "type": "package",
  49. "extra": {
  50. "laravel": {
  51. "providers": [
  52. "AlfredoRamos\\ParsedownExtra\\ParsedownExtraServiceProvider"
  53. ],
  54. "aliases": {
  55. "Markdown": "AlfredoRamos\\ParsedownExtra\\Facades\\ParsedownExtra"
  56. }
  57. }
  58. },
  59. "autoload": {
  60. "psr-4": {
  61. "AlfredoRamos\\ParsedownExtra\\": "src/"
  62. },
  63. "files": [
  64. "src/helpers.php"
  65. ]
  66. },
  67. "notification-url": "https://packagist.org/downloads/",
  68. "license": [
  69. "GPL-3.0-or-later"
  70. ],
  71. "authors": [
  72. {
  73. "name": "Alfredo Ramos",
  74. "email": "alfredo.ramos@yandex.com",
  75. "homepage": "https://github.com/AlfredoRamos",
  76. "role": "Developer"
  77. }
  78. ],
  79. "description": "A Parsedown Extra package for Laravel and Lumen",
  80. "homepage": "https://github.com/AlfredoRamos/parsedown-extra-laravel",
  81. "keywords": [
  82. "laravel",
  83. "lumen",
  84. "markdown",
  85. "markdown-extra",
  86. "parsedown",
  87. "parsedown-extra"
  88. ],
  89. "time": "2018-09-24T18:03:09+00:00"
  90. },
  91. {
  92. "name": "dnoegel/php-xdg-base-dir",
  93. "version": "0.1",
  94. "source": {
  95. "type": "git",
  96. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  97. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  98. },
  99. "dist": {
  100. "type": "zip",
  101. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  102. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  103. "shasum": "",
  104. "mirrors": [
  105. {
  106. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  107. "preferred": true
  108. }
  109. ]
  110. },
  111. "require": {
  112. "php": ">=5.3.2"
  113. },
  114. "require-dev": {
  115. "phpunit/phpunit": "@stable"
  116. },
  117. "type": "project",
  118. "autoload": {
  119. "psr-4": {
  120. "XdgBaseDir\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "description": "implementation of xdg base directory specification for php",
  128. "time": "2014-10-24T07:27:01+00:00"
  129. },
  130. {
  131. "name": "doctrine/inflector",
  132. "version": "v1.3.0",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/doctrine/inflector.git",
  136. "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
  141. "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
  142. "shasum": "",
  143. "mirrors": [
  144. {
  145. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  146. "preferred": true
  147. }
  148. ]
  149. },
  150. "require": {
  151. "php": "^7.1"
  152. },
  153. "require-dev": {
  154. "phpunit/phpunit": "^6.2"
  155. },
  156. "type": "library",
  157. "extra": {
  158. "branch-alias": {
  159. "dev-master": "1.3.x-dev"
  160. }
  161. },
  162. "autoload": {
  163. "psr-4": {
  164. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  165. }
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Roman Borschel",
  174. "email": "roman@code-factory.org"
  175. },
  176. {
  177. "name": "Benjamin Eberlei",
  178. "email": "kontakt@beberlei.de"
  179. },
  180. {
  181. "name": "Guilherme Blanco",
  182. "email": "guilhermeblanco@gmail.com"
  183. },
  184. {
  185. "name": "Jonathan Wage",
  186. "email": "jonwage@gmail.com"
  187. },
  188. {
  189. "name": "Johannes Schmitt",
  190. "email": "schmittjoh@gmail.com"
  191. }
  192. ],
  193. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  194. "homepage": "http://www.doctrine-project.org",
  195. "keywords": [
  196. "inflection",
  197. "pluralize",
  198. "singularize",
  199. "string"
  200. ],
  201. "time": "2018-01-09T20:05:19+00:00"
  202. },
  203. {
  204. "name": "doctrine/lexer",
  205. "version": "v1.0.1",
  206. "source": {
  207. "type": "git",
  208. "url": "https://github.com/doctrine/lexer.git",
  209. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
  210. },
  211. "dist": {
  212. "type": "zip",
  213. "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
  214. "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
  215. "shasum": "",
  216. "mirrors": [
  217. {
  218. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  219. "preferred": true
  220. }
  221. ]
  222. },
  223. "require": {
  224. "php": ">=5.3.2"
  225. },
  226. "type": "library",
  227. "extra": {
  228. "branch-alias": {
  229. "dev-master": "1.0.x-dev"
  230. }
  231. },
  232. "autoload": {
  233. "psr-0": {
  234. "Doctrine\\Common\\Lexer\\": "lib/"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Roman Borschel",
  244. "email": "roman@code-factory.org"
  245. },
  246. {
  247. "name": "Guilherme Blanco",
  248. "email": "guilhermeblanco@gmail.com"
  249. },
  250. {
  251. "name": "Johannes Schmitt",
  252. "email": "schmittjoh@gmail.com"
  253. }
  254. ],
  255. "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
  256. "homepage": "http://www.doctrine-project.org",
  257. "keywords": [
  258. "lexer",
  259. "parser"
  260. ],
  261. "time": "2014-09-09T13:34:57+00:00"
  262. },
  263. {
  264. "name": "dragonmantank/cron-expression",
  265. "version": "v2.2.0",
  266. "source": {
  267. "type": "git",
  268. "url": "https://github.com/dragonmantank/cron-expression.git",
  269. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5"
  270. },
  271. "dist": {
  272. "type": "zip",
  273. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/92a2c3768d50e21a1f26a53cb795ce72806266c5",
  274. "reference": "92a2c3768d50e21a1f26a53cb795ce72806266c5",
  275. "shasum": "",
  276. "mirrors": [
  277. {
  278. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  279. "preferred": true
  280. }
  281. ]
  282. },
  283. "require": {
  284. "php": ">=7.0.0"
  285. },
  286. "require-dev": {
  287. "phpunit/phpunit": "~6.4"
  288. },
  289. "type": "library",
  290. "autoload": {
  291. "psr-4": {
  292. "Cron\\": "src/Cron/"
  293. }
  294. },
  295. "notification-url": "https://packagist.org/downloads/",
  296. "license": [
  297. "MIT"
  298. ],
  299. "authors": [
  300. {
  301. "name": "Michael Dowling",
  302. "email": "mtdowling@gmail.com",
  303. "homepage": "https://github.com/mtdowling"
  304. },
  305. {
  306. "name": "Chris Tankersley",
  307. "email": "chris@ctankersley.com",
  308. "homepage": "https://github.com/dragonmantank"
  309. }
  310. ],
  311. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  312. "keywords": [
  313. "cron",
  314. "schedule"
  315. ],
  316. "time": "2018-06-06T03:12:17+00:00"
  317. },
  318. {
  319. "name": "egulias/email-validator",
  320. "version": "2.1.7",
  321. "source": {
  322. "type": "git",
  323. "url": "https://github.com/egulias/EmailValidator.git",
  324. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e"
  325. },
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/709f21f92707308cdf8f9bcfa1af4cb26586521e",
  329. "reference": "709f21f92707308cdf8f9bcfa1af4cb26586521e",
  330. "shasum": "",
  331. "mirrors": [
  332. {
  333. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  334. "preferred": true
  335. }
  336. ]
  337. },
  338. "require": {
  339. "doctrine/lexer": "^1.0.1",
  340. "php": ">= 5.5"
  341. },
  342. "require-dev": {
  343. "dominicsayers/isemail": "dev-master",
  344. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  345. "satooshi/php-coveralls": "^1.0.1"
  346. },
  347. "suggest": {
  348. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "branch-alias": {
  353. "dev-master": "2.0.x-dev"
  354. }
  355. },
  356. "autoload": {
  357. "psr-4": {
  358. "Egulias\\EmailValidator\\": "EmailValidator"
  359. }
  360. },
  361. "notification-url": "https://packagist.org/downloads/",
  362. "license": [
  363. "MIT"
  364. ],
  365. "authors": [
  366. {
  367. "name": "Eduardo Gulias Davis"
  368. }
  369. ],
  370. "description": "A library for validating emails against several RFCs",
  371. "homepage": "https://github.com/egulias/EmailValidator",
  372. "keywords": [
  373. "email",
  374. "emailvalidation",
  375. "emailvalidator",
  376. "validation",
  377. "validator"
  378. ],
  379. "time": "2018-12-04T22:38:24+00:00"
  380. },
  381. {
  382. "name": "erusev/parsedown",
  383. "version": "v1.7.2",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/erusev/parsedown.git",
  387. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/erusev/parsedown/zipball/d60bcdc46978357759ecb13cb4b078da783f8faf",
  392. "reference": "d60bcdc46978357759ecb13cb4b078da783f8faf",
  393. "shasum": "",
  394. "mirrors": [
  395. {
  396. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  397. "preferred": true
  398. }
  399. ]
  400. },
  401. "require": {
  402. "ext-mbstring": "*",
  403. "php": ">=5.3.0"
  404. },
  405. "require-dev": {
  406. "phpunit/phpunit": "^4.8.35"
  407. },
  408. "type": "library",
  409. "autoload": {
  410. "psr-0": {
  411. "Parsedown": ""
  412. }
  413. },
  414. "notification-url": "https://packagist.org/downloads/",
  415. "license": [
  416. "MIT"
  417. ],
  418. "authors": [
  419. {
  420. "name": "Emanuil Rusev",
  421. "email": "hello@erusev.com",
  422. "homepage": "http://erusev.com"
  423. }
  424. ],
  425. "description": "Parser for Markdown.",
  426. "homepage": "http://parsedown.org",
  427. "keywords": [
  428. "markdown",
  429. "parser"
  430. ],
  431. "time": "2019-03-17T17:19:46+00:00"
  432. },
  433. {
  434. "name": "erusev/parsedown-extra",
  435. "version": "0.7.1",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/erusev/parsedown-extra.git",
  439. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/erusev/parsedown-extra/zipball/0db5cce7354e4b76f155d092ab5eb3981c21258c",
  444. "reference": "0db5cce7354e4b76f155d092ab5eb3981c21258c",
  445. "shasum": "",
  446. "mirrors": [
  447. {
  448. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  449. "preferred": true
  450. }
  451. ]
  452. },
  453. "require": {
  454. "erusev/parsedown": "~1.4"
  455. },
  456. "type": "library",
  457. "autoload": {
  458. "psr-0": {
  459. "ParsedownExtra": ""
  460. }
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "Emanuil Rusev",
  469. "email": "hello@erusev.com",
  470. "homepage": "http://erusev.com"
  471. }
  472. ],
  473. "description": "An extension of Parsedown that adds support for Markdown Extra.",
  474. "homepage": "https://github.com/erusev/parsedown-extra",
  475. "keywords": [
  476. "markdown",
  477. "markdown extra",
  478. "parsedown",
  479. "parser"
  480. ],
  481. "time": "2015-11-01T10:19:22+00:00"
  482. },
  483. {
  484. "name": "ezyang/htmlpurifier",
  485. "version": "v4.10.0",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/ezyang/htmlpurifier.git",
  489. "reference": "d85d39da4576a6934b72480be6978fb10c860021"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d85d39da4576a6934b72480be6978fb10c860021",
  494. "reference": "d85d39da4576a6934b72480be6978fb10c860021",
  495. "shasum": "",
  496. "mirrors": [
  497. {
  498. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  499. "preferred": true
  500. }
  501. ]
  502. },
  503. "require": {
  504. "php": ">=5.2"
  505. },
  506. "require-dev": {
  507. "simpletest/simpletest": "^1.1"
  508. },
  509. "type": "library",
  510. "autoload": {
  511. "psr-0": {
  512. "HTMLPurifier": "library/"
  513. },
  514. "files": [
  515. "library/HTMLPurifier.composer.php"
  516. ]
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "LGPL"
  521. ],
  522. "authors": [
  523. {
  524. "name": "Edward Z. Yang",
  525. "email": "admin@htmlpurifier.org",
  526. "homepage": "http://ezyang.com"
  527. }
  528. ],
  529. "description": "Standards compliant HTML filter written in PHP",
  530. "homepage": "http://htmlpurifier.org/",
  531. "keywords": [
  532. "html"
  533. ],
  534. "time": "2018-02-23T01:58:20+00:00"
  535. },
  536. {
  537. "name": "fideloper/proxy",
  538. "version": "4.1.0",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/fideloper/TrustedProxy.git",
  542. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  547. "reference": "177c79a2d1f9970f89ee2fb4c12b429af38b6dfb",
  548. "shasum": "",
  549. "mirrors": [
  550. {
  551. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  552. "preferred": true
  553. }
  554. ]
  555. },
  556. "require": {
  557. "illuminate/contracts": "~5.0",
  558. "php": ">=5.4.0"
  559. },
  560. "require-dev": {
  561. "illuminate/http": "~5.6",
  562. "mockery/mockery": "~1.0",
  563. "phpunit/phpunit": "^6.0"
  564. },
  565. "type": "library",
  566. "extra": {
  567. "laravel": {
  568. "providers": [
  569. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  570. ]
  571. }
  572. },
  573. "autoload": {
  574. "psr-4": {
  575. "Fideloper\\Proxy\\": "src/"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Chris Fidao",
  585. "email": "fideloper@gmail.com"
  586. }
  587. ],
  588. "description": "Set trusted proxies for Laravel",
  589. "keywords": [
  590. "load balancing",
  591. "proxy",
  592. "trusted proxy"
  593. ],
  594. "time": "2019-01-10T14:06:47+00:00"
  595. },
  596. {
  597. "name": "guzzlehttp/psr7",
  598. "version": "1.5.2",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/guzzle/psr7.git",
  602. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  607. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  608. "shasum": "",
  609. "mirrors": [
  610. {
  611. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  612. "preferred": true
  613. }
  614. ]
  615. },
  616. "require": {
  617. "php": ">=5.4.0",
  618. "psr/http-message": "~1.0",
  619. "ralouphie/getallheaders": "^2.0.5"
  620. },
  621. "provide": {
  622. "psr/http-message-implementation": "1.0"
  623. },
  624. "require-dev": {
  625. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "1.5-dev"
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "GuzzleHttp\\Psr7\\": "src/"
  636. },
  637. "files": [
  638. "src/functions_include.php"
  639. ]
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Michael Dowling",
  648. "email": "mtdowling@gmail.com",
  649. "homepage": "https://github.com/mtdowling"
  650. },
  651. {
  652. "name": "Tobias Schultze",
  653. "homepage": "https://github.com/Tobion"
  654. }
  655. ],
  656. "description": "PSR-7 message implementation that also provides common utility methods",
  657. "keywords": [
  658. "http",
  659. "message",
  660. "psr-7",
  661. "request",
  662. "response",
  663. "stream",
  664. "uri",
  665. "url"
  666. ],
  667. "time": "2018-12-04T20:46:45+00:00"
  668. },
  669. {
  670. "name": "intervention/image",
  671. "version": "2.4.2",
  672. "source": {
  673. "type": "git",
  674. "url": "https://github.com/Intervention/image.git",
  675. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb"
  676. },
  677. "dist": {
  678. "type": "zip",
  679. "url": "https://api.github.com/repos/Intervention/image/zipball/e82d274f786e3d4b866a59b173f42e716f0783eb",
  680. "reference": "e82d274f786e3d4b866a59b173f42e716f0783eb",
  681. "shasum": "",
  682. "mirrors": [
  683. {
  684. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  685. "preferred": true
  686. }
  687. ]
  688. },
  689. "require": {
  690. "ext-fileinfo": "*",
  691. "guzzlehttp/psr7": "~1.1",
  692. "php": ">=5.4.0"
  693. },
  694. "require-dev": {
  695. "mockery/mockery": "~0.9.2",
  696. "phpunit/phpunit": "^4.8 || ^5.7"
  697. },
  698. "suggest": {
  699. "ext-gd": "to use GD library based image processing.",
  700. "ext-imagick": "to use Imagick based image processing.",
  701. "intervention/imagecache": "Caching extension for the Intervention Image library"
  702. },
  703. "type": "library",
  704. "extra": {
  705. "branch-alias": {
  706. "dev-master": "2.4-dev"
  707. },
  708. "laravel": {
  709. "providers": [
  710. "Intervention\\Image\\ImageServiceProvider"
  711. ],
  712. "aliases": {
  713. "Image": "Intervention\\Image\\Facades\\Image"
  714. }
  715. }
  716. },
  717. "autoload": {
  718. "psr-4": {
  719. "Intervention\\Image\\": "src/Intervention/Image"
  720. }
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "MIT"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Oliver Vogel",
  729. "email": "oliver@olivervogel.com",
  730. "homepage": "http://olivervogel.com/"
  731. }
  732. ],
  733. "description": "Image handling and manipulation library with support for Laravel integration",
  734. "homepage": "http://image.intervention.io/",
  735. "keywords": [
  736. "gd",
  737. "image",
  738. "imagick",
  739. "laravel",
  740. "thumbnail",
  741. "watermark"
  742. ],
  743. "time": "2018-05-29T14:19:03+00:00"
  744. },
  745. {
  746. "name": "jakub-onderka/php-console-color",
  747. "version": "v0.2",
  748. "source": {
  749. "type": "git",
  750. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  751. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  752. },
  753. "dist": {
  754. "type": "zip",
  755. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  756. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  757. "shasum": "",
  758. "mirrors": [
  759. {
  760. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  761. "preferred": true
  762. }
  763. ]
  764. },
  765. "require": {
  766. "php": ">=5.4.0"
  767. },
  768. "require-dev": {
  769. "jakub-onderka/php-code-style": "1.0",
  770. "jakub-onderka/php-parallel-lint": "1.0",
  771. "jakub-onderka/php-var-dump-check": "0.*",
  772. "phpunit/phpunit": "~4.3",
  773. "squizlabs/php_codesniffer": "1.*"
  774. },
  775. "type": "library",
  776. "autoload": {
  777. "psr-4": {
  778. "JakubOnderka\\PhpConsoleColor\\": "src/"
  779. }
  780. },
  781. "notification-url": "https://packagist.org/downloads/",
  782. "license": [
  783. "BSD-2-Clause"
  784. ],
  785. "authors": [
  786. {
  787. "name": "Jakub Onderka",
  788. "email": "jakub.onderka@gmail.com"
  789. }
  790. ],
  791. "time": "2018-09-29T17:23:10+00:00"
  792. },
  793. {
  794. "name": "jakub-onderka/php-console-highlighter",
  795. "version": "v0.4",
  796. "source": {
  797. "type": "git",
  798. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  799. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  800. },
  801. "dist": {
  802. "type": "zip",
  803. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  804. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  805. "shasum": "",
  806. "mirrors": [
  807. {
  808. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  809. "preferred": true
  810. }
  811. ]
  812. },
  813. "require": {
  814. "ext-tokenizer": "*",
  815. "jakub-onderka/php-console-color": "~0.2",
  816. "php": ">=5.4.0"
  817. },
  818. "require-dev": {
  819. "jakub-onderka/php-code-style": "~1.0",
  820. "jakub-onderka/php-parallel-lint": "~1.0",
  821. "jakub-onderka/php-var-dump-check": "~0.1",
  822. "phpunit/phpunit": "~4.0",
  823. "squizlabs/php_codesniffer": "~1.5"
  824. },
  825. "type": "library",
  826. "autoload": {
  827. "psr-4": {
  828. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  829. }
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Jakub Onderka",
  838. "email": "acci@acci.cz",
  839. "homepage": "http://www.acci.cz/"
  840. }
  841. ],
  842. "description": "Highlight PHP code in terminal",
  843. "time": "2018-09-29T18:48:56+00:00"
  844. },
  845. {
  846. "name": "laravel/framework",
  847. "version": "v5.8.7",
  848. "source": {
  849. "type": "git",
  850. "url": "https://github.com/laravel/framework.git",
  851. "reference": "f12c7baf9ceee80b131e06a01d3221d9a2488670"
  852. },
  853. "dist": {
  854. "type": "zip",
  855. "url": "https://api.github.com/repos/laravel/framework/zipball/f12c7baf9ceee80b131e06a01d3221d9a2488670",
  856. "reference": "f12c7baf9ceee80b131e06a01d3221d9a2488670",
  857. "shasum": "",
  858. "mirrors": [
  859. {
  860. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  861. "preferred": true
  862. }
  863. ]
  864. },
  865. "require": {
  866. "doctrine/inflector": "^1.1",
  867. "dragonmantank/cron-expression": "^2.0",
  868. "egulias/email-validator": "^2.0",
  869. "erusev/parsedown": "^1.7",
  870. "ext-json": "*",
  871. "ext-mbstring": "*",
  872. "ext-openssl": "*",
  873. "league/flysystem": "^1.0.8",
  874. "monolog/monolog": "^1.12",
  875. "nesbot/carbon": "^1.26.3 || ^2.0",
  876. "opis/closure": "^3.1",
  877. "php": "^7.1.3",
  878. "psr/container": "^1.0",
  879. "psr/simple-cache": "^1.0",
  880. "ramsey/uuid": "^3.7",
  881. "swiftmailer/swiftmailer": "^6.0",
  882. "symfony/console": "^4.2",
  883. "symfony/debug": "^4.2",
  884. "symfony/finder": "^4.2",
  885. "symfony/http-foundation": "^4.2",
  886. "symfony/http-kernel": "^4.2",
  887. "symfony/process": "^4.2",
  888. "symfony/routing": "^4.2",
  889. "symfony/var-dumper": "^4.2",
  890. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  891. "vlucas/phpdotenv": "^3.3"
  892. },
  893. "conflict": {
  894. "tightenco/collect": "<5.5.33"
  895. },
  896. "replace": {
  897. "illuminate/auth": "self.version",
  898. "illuminate/broadcasting": "self.version",
  899. "illuminate/bus": "self.version",
  900. "illuminate/cache": "self.version",
  901. "illuminate/config": "self.version",
  902. "illuminate/console": "self.version",
  903. "illuminate/container": "self.version",
  904. "illuminate/contracts": "self.version",
  905. "illuminate/cookie": "self.version",
  906. "illuminate/database": "self.version",
  907. "illuminate/encryption": "self.version",
  908. "illuminate/events": "self.version",
  909. "illuminate/filesystem": "self.version",
  910. "illuminate/hashing": "self.version",
  911. "illuminate/http": "self.version",
  912. "illuminate/log": "self.version",
  913. "illuminate/mail": "self.version",
  914. "illuminate/notifications": "self.version",
  915. "illuminate/pagination": "self.version",
  916. "illuminate/pipeline": "self.version",
  917. "illuminate/queue": "self.version",
  918. "illuminate/redis": "self.version",
  919. "illuminate/routing": "self.version",
  920. "illuminate/session": "self.version",
  921. "illuminate/support": "self.version",
  922. "illuminate/translation": "self.version",
  923. "illuminate/validation": "self.version",
  924. "illuminate/view": "self.version"
  925. },
  926. "require-dev": {
  927. "aws/aws-sdk-php": "^3.0",
  928. "doctrine/dbal": "^2.6",
  929. "filp/whoops": "^2.1.4",
  930. "guzzlehttp/guzzle": "^6.3",
  931. "league/flysystem-cached-adapter": "^1.0",
  932. "mockery/mockery": "^1.0",
  933. "moontoast/math": "^1.1",
  934. "orchestra/testbench-core": "3.8.*",
  935. "pda/pheanstalk": "^4.0",
  936. "phpunit/phpunit": "^7.5|^8.0",
  937. "predis/predis": "^1.1.1",
  938. "symfony/css-selector": "^4.2",
  939. "symfony/dom-crawler": "^4.2",
  940. "true/punycode": "^2.1"
  941. },
  942. "suggest": {
  943. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (^3.0).",
  944. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  945. "ext-pcntl": "Required to use all features of the queue worker.",
  946. "ext-posix": "Required to use all features of the queue worker.",
  947. "filp/whoops": "Required for friendly error pages in development (^2.1.4).",
  948. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  949. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (^6.0).",
  950. "laravel/tinker": "Required to use the tinker console command (^1.0).",
  951. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  952. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  953. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (^1.0).",
  954. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  955. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  956. "nexmo/client": "Required to use the Nexmo transport (^1.0).",
  957. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  958. "predis/predis": "Required to use the redis cache and queue drivers (^1.0).",
  959. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^3.0).",
  960. "symfony/css-selector": "Required to use some of the crawler integration testing tools (^4.2).",
  961. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (^4.2).",
  962. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.1).",
  963. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  964. },
  965. "type": "library",
  966. "extra": {
  967. "branch-alias": {
  968. "dev-master": "5.8-dev"
  969. }
  970. },
  971. "autoload": {
  972. "files": [
  973. "src/Illuminate/Foundation/helpers.php",
  974. "src/Illuminate/Support/helpers.php"
  975. ],
  976. "psr-4": {
  977. "Illuminate\\": "src/Illuminate/"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "Taylor Otwell",
  987. "email": "taylor@laravel.com"
  988. }
  989. ],
  990. "description": "The Laravel Framework.",
  991. "homepage": "https://laravel.com",
  992. "keywords": [
  993. "framework",
  994. "laravel"
  995. ],
  996. "time": "2019-03-21T16:54:38+00:00"
  997. },
  998. {
  999. "name": "laravel/tinker",
  1000. "version": "v1.0.8",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/laravel/tinker.git",
  1004. "reference": "cafbf598a90acde68985660e79b2b03c5609a405"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/laravel/tinker/zipball/cafbf598a90acde68985660e79b2b03c5609a405",
  1009. "reference": "cafbf598a90acde68985660e79b2b03c5609a405",
  1010. "shasum": "",
  1011. "mirrors": [
  1012. {
  1013. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1014. "preferred": true
  1015. }
  1016. ]
  1017. },
  1018. "require": {
  1019. "illuminate/console": "~5.1",
  1020. "illuminate/contracts": "~5.1",
  1021. "illuminate/support": "~5.1",
  1022. "php": ">=5.5.9",
  1023. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  1024. "symfony/var-dumper": "~3.0|~4.0"
  1025. },
  1026. "require-dev": {
  1027. "phpunit/phpunit": "~4.0|~5.0"
  1028. },
  1029. "suggest": {
  1030. "illuminate/database": "The Illuminate Database package (~5.1)."
  1031. },
  1032. "type": "library",
  1033. "extra": {
  1034. "branch-alias": {
  1035. "dev-master": "1.0-dev"
  1036. },
  1037. "laravel": {
  1038. "providers": [
  1039. "Laravel\\Tinker\\TinkerServiceProvider"
  1040. ]
  1041. }
  1042. },
  1043. "autoload": {
  1044. "psr-4": {
  1045. "Laravel\\Tinker\\": "src/"
  1046. }
  1047. },
  1048. "notification-url": "https://packagist.org/downloads/",
  1049. "license": [
  1050. "MIT"
  1051. ],
  1052. "authors": [
  1053. {
  1054. "name": "Taylor Otwell",
  1055. "email": "taylor@laravel.com"
  1056. }
  1057. ],
  1058. "description": "Powerful REPL for the Laravel framework.",
  1059. "keywords": [
  1060. "REPL",
  1061. "Tinker",
  1062. "laravel",
  1063. "psysh"
  1064. ],
  1065. "time": "2018-10-12T19:39:35+00:00"
  1066. },
  1067. {
  1068. "name": "league/flysystem",
  1069. "version": "1.0.50",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/thephpleague/flysystem.git",
  1073. "reference": "dab4e7624efa543a943be978008f439c333f2249"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/dab4e7624efa543a943be978008f439c333f2249",
  1078. "reference": "dab4e7624efa543a943be978008f439c333f2249",
  1079. "shasum": "",
  1080. "mirrors": [
  1081. {
  1082. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1083. "preferred": true
  1084. }
  1085. ]
  1086. },
  1087. "require": {
  1088. "ext-fileinfo": "*",
  1089. "php": ">=5.5.9"
  1090. },
  1091. "conflict": {
  1092. "league/flysystem-sftp": "<1.0.6"
  1093. },
  1094. "require-dev": {
  1095. "phpspec/phpspec": "^3.4",
  1096. "phpunit/phpunit": "^5.7.10"
  1097. },
  1098. "suggest": {
  1099. "ext-fileinfo": "Required for MimeType",
  1100. "ext-ftp": "Allows you to use FTP server storage",
  1101. "ext-openssl": "Allows you to use FTPS server storage",
  1102. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1103. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1104. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1105. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1106. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1107. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1108. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1109. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1110. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1111. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1112. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1113. },
  1114. "type": "library",
  1115. "extra": {
  1116. "branch-alias": {
  1117. "dev-master": "1.1-dev"
  1118. }
  1119. },
  1120. "autoload": {
  1121. "psr-4": {
  1122. "League\\Flysystem\\": "src/"
  1123. }
  1124. },
  1125. "notification-url": "https://packagist.org/downloads/",
  1126. "license": [
  1127. "MIT"
  1128. ],
  1129. "authors": [
  1130. {
  1131. "name": "Frank de Jonge",
  1132. "email": "info@frenky.net"
  1133. }
  1134. ],
  1135. "description": "Filesystem abstraction: Many filesystems, one API.",
  1136. "keywords": [
  1137. "Cloud Files",
  1138. "WebDAV",
  1139. "abstraction",
  1140. "aws",
  1141. "cloud",
  1142. "copy.com",
  1143. "dropbox",
  1144. "file systems",
  1145. "files",
  1146. "filesystem",
  1147. "filesystems",
  1148. "ftp",
  1149. "rackspace",
  1150. "remote",
  1151. "s3",
  1152. "sftp",
  1153. "storage"
  1154. ],
  1155. "time": "2019-02-01T08:50:36+00:00"
  1156. },
  1157. {
  1158. "name": "monolog/monolog",
  1159. "version": "1.24.0",
  1160. "source": {
  1161. "type": "git",
  1162. "url": "https://github.com/Seldaek/monolog.git",
  1163. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1164. },
  1165. "dist": {
  1166. "type": "zip",
  1167. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1168. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1169. "shasum": "",
  1170. "mirrors": [
  1171. {
  1172. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1173. "preferred": true
  1174. }
  1175. ]
  1176. },
  1177. "require": {
  1178. "php": ">=5.3.0",
  1179. "psr/log": "~1.0"
  1180. },
  1181. "provide": {
  1182. "psr/log-implementation": "1.0.0"
  1183. },
  1184. "require-dev": {
  1185. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1186. "doctrine/couchdb": "~1.0@dev",
  1187. "graylog2/gelf-php": "~1.0",
  1188. "jakub-onderka/php-parallel-lint": "0.9",
  1189. "php-amqplib/php-amqplib": "~2.4",
  1190. "php-console/php-console": "^3.1.3",
  1191. "phpunit/phpunit": "~4.5",
  1192. "phpunit/phpunit-mock-objects": "2.3.0",
  1193. "ruflin/elastica": ">=0.90 <3.0",
  1194. "sentry/sentry": "^0.13",
  1195. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1196. },
  1197. "suggest": {
  1198. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1199. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1200. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1201. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1202. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1203. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1204. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1205. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1206. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1207. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1208. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1209. },
  1210. "type": "library",
  1211. "extra": {
  1212. "branch-alias": {
  1213. "dev-master": "2.0.x-dev"
  1214. }
  1215. },
  1216. "autoload": {
  1217. "psr-4": {
  1218. "Monolog\\": "src/Monolog"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "authors": [
  1226. {
  1227. "name": "Jordi Boggiano",
  1228. "email": "j.boggiano@seld.be",
  1229. "homepage": "http://seld.be"
  1230. }
  1231. ],
  1232. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1233. "homepage": "http://github.com/Seldaek/monolog",
  1234. "keywords": [
  1235. "log",
  1236. "logging",
  1237. "psr-3"
  1238. ],
  1239. "time": "2018-11-05T09:00:11+00:00"
  1240. },
  1241. {
  1242. "name": "nesbot/carbon",
  1243. "version": "2.16.0",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/briannesbitt/Carbon.git",
  1247. "reference": "dd16fedc022180ea4292a03aabe95e9895677911"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/dd16fedc022180ea4292a03aabe95e9895677911",
  1252. "reference": "dd16fedc022180ea4292a03aabe95e9895677911",
  1253. "shasum": "",
  1254. "mirrors": [
  1255. {
  1256. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1257. "preferred": true
  1258. }
  1259. ]
  1260. },
  1261. "require": {
  1262. "ext-json": "*",
  1263. "php": "^7.1.8 || ^8.0",
  1264. "symfony/translation": "^3.4 || ^4.0"
  1265. },
  1266. "require-dev": {
  1267. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1268. "kylekatarnls/multi-tester": "^0.1",
  1269. "phpmd/phpmd": "^2.6",
  1270. "phpstan/phpstan": "^0.10.8",
  1271. "phpunit/phpunit": "^7.5 || ^8.0",
  1272. "squizlabs/php_codesniffer": "^3.4"
  1273. },
  1274. "type": "library",
  1275. "extra": {
  1276. "laravel": {
  1277. "providers": [
  1278. "Carbon\\Laravel\\ServiceProvider"
  1279. ]
  1280. }
  1281. },
  1282. "autoload": {
  1283. "psr-4": {
  1284. "Carbon\\": "src/Carbon/"
  1285. }
  1286. },
  1287. "notification-url": "https://packagist.org/downloads/",
  1288. "license": [
  1289. "MIT"
  1290. ],
  1291. "authors": [
  1292. {
  1293. "name": "Brian Nesbitt",
  1294. "email": "brian@nesbot.com",
  1295. "homepage": "http://nesbot.com"
  1296. }
  1297. ],
  1298. "description": "A simple API extension for DateTime.",
  1299. "homepage": "http://carbon.nesbot.com",
  1300. "keywords": [
  1301. "date",
  1302. "datetime",
  1303. "time"
  1304. ],
  1305. "time": "2019-03-12T09:31:40+00:00"
  1306. },
  1307. {
  1308. "name": "nikic/php-parser",
  1309. "version": "v4.2.1",
  1310. "source": {
  1311. "type": "git",
  1312. "url": "https://github.com/nikic/PHP-Parser.git",
  1313. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0"
  1314. },
  1315. "dist": {
  1316. "type": "zip",
  1317. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/5221f49a608808c1e4d436df32884cbc1b821ac0",
  1318. "reference": "5221f49a608808c1e4d436df32884cbc1b821ac0",
  1319. "shasum": "",
  1320. "mirrors": [
  1321. {
  1322. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1323. "preferred": true
  1324. }
  1325. ]
  1326. },
  1327. "require": {
  1328. "ext-tokenizer": "*",
  1329. "php": ">=7.0"
  1330. },
  1331. "require-dev": {
  1332. "phpunit/phpunit": "^6.5 || ^7.0"
  1333. },
  1334. "bin": [
  1335. "bin/php-parse"
  1336. ],
  1337. "type": "library",
  1338. "extra": {
  1339. "branch-alias": {
  1340. "dev-master": "4.2-dev"
  1341. }
  1342. },
  1343. "autoload": {
  1344. "psr-4": {
  1345. "PhpParser\\": "lib/PhpParser"
  1346. }
  1347. },
  1348. "notification-url": "https://packagist.org/downloads/",
  1349. "license": [
  1350. "BSD-3-Clause"
  1351. ],
  1352. "authors": [
  1353. {
  1354. "name": "Nikita Popov"
  1355. }
  1356. ],
  1357. "description": "A PHP parser written in PHP",
  1358. "keywords": [
  1359. "parser",
  1360. "php"
  1361. ],
  1362. "time": "2019-02-16T20:54:15+00:00"
  1363. },
  1364. {
  1365. "name": "opis/closure",
  1366. "version": "3.1.6",
  1367. "source": {
  1368. "type": "git",
  1369. "url": "https://github.com/opis/closure.git",
  1370. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b"
  1371. },
  1372. "dist": {
  1373. "type": "zip",
  1374. "url": "https://api.github.com/repos/opis/closure/zipball/ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  1375. "reference": "ccb8e3928c5c8181c76cdd0ed9366c5bcaafd91b",
  1376. "shasum": "",
  1377. "mirrors": [
  1378. {
  1379. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1380. "preferred": true
  1381. }
  1382. ]
  1383. },
  1384. "require": {
  1385. "php": "^5.4 || ^7.0"
  1386. },
  1387. "require-dev": {
  1388. "jeremeamia/superclosure": "^2.0",
  1389. "phpunit/phpunit": "^4.0|^5.0|^6.0|^7.0"
  1390. },
  1391. "type": "library",
  1392. "extra": {
  1393. "branch-alias": {
  1394. "dev-master": "3.1.x-dev"
  1395. }
  1396. },
  1397. "autoload": {
  1398. "psr-4": {
  1399. "Opis\\Closure\\": "src/"
  1400. },
  1401. "files": [
  1402. "functions.php"
  1403. ]
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Marius Sarca",
  1412. "email": "marius.sarca@gmail.com"
  1413. },
  1414. {
  1415. "name": "Sorin Sarca",
  1416. "email": "sarca_sorin@hotmail.com"
  1417. }
  1418. ],
  1419. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1420. "homepage": "https://opis.io/closure",
  1421. "keywords": [
  1422. "anonymous functions",
  1423. "closure",
  1424. "function",
  1425. "serializable",
  1426. "serialization",
  1427. "serialize"
  1428. ],
  1429. "time": "2019-02-22T10:30:00+00:00"
  1430. },
  1431. {
  1432. "name": "paragonie/random_compat",
  1433. "version": "v9.99.99",
  1434. "source": {
  1435. "type": "git",
  1436. "url": "https://github.com/paragonie/random_compat.git",
  1437. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1438. },
  1439. "dist": {
  1440. "type": "zip",
  1441. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1442. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1443. "shasum": "",
  1444. "mirrors": [
  1445. {
  1446. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1447. "preferred": true
  1448. }
  1449. ]
  1450. },
  1451. "require": {
  1452. "php": "^7"
  1453. },
  1454. "require-dev": {
  1455. "phpunit/phpunit": "4.*|5.*",
  1456. "vimeo/psalm": "^1"
  1457. },
  1458. "suggest": {
  1459. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1460. },
  1461. "type": "library",
  1462. "notification-url": "https://packagist.org/downloads/",
  1463. "license": [
  1464. "MIT"
  1465. ],
  1466. "authors": [
  1467. {
  1468. "name": "Paragon Initiative Enterprises",
  1469. "email": "security@paragonie.com",
  1470. "homepage": "https://paragonie.com"
  1471. }
  1472. ],
  1473. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1474. "keywords": [
  1475. "csprng",
  1476. "polyfill",
  1477. "pseudorandom",
  1478. "random"
  1479. ],
  1480. "time": "2018-07-02T15:55:56+00:00"
  1481. },
  1482. {
  1483. "name": "phpoption/phpoption",
  1484. "version": "1.5.0",
  1485. "source": {
  1486. "type": "git",
  1487. "url": "https://github.com/schmittjoh/php-option.git",
  1488. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed"
  1489. },
  1490. "dist": {
  1491. "type": "zip",
  1492. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1493. "reference": "94e644f7d2051a5f0fcf77d81605f152eecff0ed",
  1494. "shasum": "",
  1495. "mirrors": [
  1496. {
  1497. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1498. "preferred": true
  1499. }
  1500. ]
  1501. },
  1502. "require": {
  1503. "php": ">=5.3.0"
  1504. },
  1505. "require-dev": {
  1506. "phpunit/phpunit": "4.7.*"
  1507. },
  1508. "type": "library",
  1509. "extra": {
  1510. "branch-alias": {
  1511. "dev-master": "1.3-dev"
  1512. }
  1513. },
  1514. "autoload": {
  1515. "psr-0": {
  1516. "PhpOption\\": "src/"
  1517. }
  1518. },
  1519. "notification-url": "https://packagist.org/downloads/",
  1520. "license": [
  1521. "Apache2"
  1522. ],
  1523. "authors": [
  1524. {
  1525. "name": "Johannes M. Schmitt",
  1526. "email": "schmittjoh@gmail.com"
  1527. }
  1528. ],
  1529. "description": "Option Type for PHP",
  1530. "keywords": [
  1531. "language",
  1532. "option",
  1533. "php",
  1534. "type"
  1535. ],
  1536. "time": "2015-07-25T16:39:46+00:00"
  1537. },
  1538. {
  1539. "name": "psr/container",
  1540. "version": "1.0.0",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/php-fig/container.git",
  1544. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1549. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1550. "shasum": "",
  1551. "mirrors": [
  1552. {
  1553. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1554. "preferred": true
  1555. }
  1556. ]
  1557. },
  1558. "require": {
  1559. "php": ">=5.3.0"
  1560. },
  1561. "type": "library",
  1562. "extra": {
  1563. "branch-alias": {
  1564. "dev-master": "1.0.x-dev"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Psr\\Container\\": "src/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "authors": [
  1577. {
  1578. "name": "PHP-FIG",
  1579. "homepage": "http://www.php-fig.org/"
  1580. }
  1581. ],
  1582. "description": "Common Container Interface (PHP FIG PSR-11)",
  1583. "homepage": "https://github.com/php-fig/container",
  1584. "keywords": [
  1585. "PSR-11",
  1586. "container",
  1587. "container-interface",
  1588. "container-interop",
  1589. "psr"
  1590. ],
  1591. "time": "2017-02-14T16:28:37+00:00"
  1592. },
  1593. {
  1594. "name": "psr/http-message",
  1595. "version": "1.0.1",
  1596. "source": {
  1597. "type": "git",
  1598. "url": "https://github.com/php-fig/http-message.git",
  1599. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1600. },
  1601. "dist": {
  1602. "type": "zip",
  1603. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1604. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1605. "shasum": "",
  1606. "mirrors": [
  1607. {
  1608. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1609. "preferred": true
  1610. }
  1611. ]
  1612. },
  1613. "require": {
  1614. "php": ">=5.3.0"
  1615. },
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-master": "1.0.x-dev"
  1620. }
  1621. },
  1622. "autoload": {
  1623. "psr-4": {
  1624. "Psr\\Http\\Message\\": "src/"
  1625. }
  1626. },
  1627. "notification-url": "https://packagist.org/downloads/",
  1628. "license": [
  1629. "MIT"
  1630. ],
  1631. "authors": [
  1632. {
  1633. "name": "PHP-FIG",
  1634. "homepage": "http://www.php-fig.org/"
  1635. }
  1636. ],
  1637. "description": "Common interface for HTTP messages",
  1638. "homepage": "https://github.com/php-fig/http-message",
  1639. "keywords": [
  1640. "http",
  1641. "http-message",
  1642. "psr",
  1643. "psr-7",
  1644. "request",
  1645. "response"
  1646. ],
  1647. "time": "2016-08-06T14:39:51+00:00"
  1648. },
  1649. {
  1650. "name": "psr/log",
  1651. "version": "1.1.0",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/php-fig/log.git",
  1655. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1660. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1661. "shasum": "",
  1662. "mirrors": [
  1663. {
  1664. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1665. "preferred": true
  1666. }
  1667. ]
  1668. },
  1669. "require": {
  1670. "php": ">=5.3.0"
  1671. },
  1672. "type": "library",
  1673. "extra": {
  1674. "branch-alias": {
  1675. "dev-master": "1.0.x-dev"
  1676. }
  1677. },
  1678. "autoload": {
  1679. "psr-4": {
  1680. "Psr\\Log\\": "Psr/Log/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "MIT"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "PHP-FIG",
  1690. "homepage": "http://www.php-fig.org/"
  1691. }
  1692. ],
  1693. "description": "Common interface for logging libraries",
  1694. "homepage": "https://github.com/php-fig/log",
  1695. "keywords": [
  1696. "log",
  1697. "psr",
  1698. "psr-3"
  1699. ],
  1700. "time": "2018-11-20T15:27:04+00:00"
  1701. },
  1702. {
  1703. "name": "psr/simple-cache",
  1704. "version": "1.0.1",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://github.com/php-fig/simple-cache.git",
  1708. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1713. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1714. "shasum": "",
  1715. "mirrors": [
  1716. {
  1717. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1718. "preferred": true
  1719. }
  1720. ]
  1721. },
  1722. "require": {
  1723. "php": ">=5.3.0"
  1724. },
  1725. "type": "library",
  1726. "extra": {
  1727. "branch-alias": {
  1728. "dev-master": "1.0.x-dev"
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Psr\\SimpleCache\\": "src/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "PHP-FIG",
  1743. "homepage": "http://www.php-fig.org/"
  1744. }
  1745. ],
  1746. "description": "Common interfaces for simple caching",
  1747. "keywords": [
  1748. "cache",
  1749. "caching",
  1750. "psr",
  1751. "psr-16",
  1752. "simple-cache"
  1753. ],
  1754. "time": "2017-10-23T01:57:42+00:00"
  1755. },
  1756. {
  1757. "name": "psy/psysh",
  1758. "version": "v0.9.9",
  1759. "source": {
  1760. "type": "git",
  1761. "url": "https://github.com/bobthecow/psysh.git",
  1762. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  1763. },
  1764. "dist": {
  1765. "type": "zip",
  1766. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  1767. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  1768. "shasum": "",
  1769. "mirrors": [
  1770. {
  1771. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1772. "preferred": true
  1773. }
  1774. ]
  1775. },
  1776. "require": {
  1777. "dnoegel/php-xdg-base-dir": "0.1",
  1778. "ext-json": "*",
  1779. "ext-tokenizer": "*",
  1780. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  1781. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  1782. "php": ">=5.4.0",
  1783. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  1784. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  1785. },
  1786. "require-dev": {
  1787. "bamarni/composer-bin-plugin": "^1.2",
  1788. "hoa/console": "~2.15|~3.16",
  1789. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  1790. },
  1791. "suggest": {
  1792. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1793. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1794. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1795. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  1796. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  1797. },
  1798. "bin": [
  1799. "bin/psysh"
  1800. ],
  1801. "type": "library",
  1802. "extra": {
  1803. "branch-alias": {
  1804. "dev-develop": "0.9.x-dev"
  1805. }
  1806. },
  1807. "autoload": {
  1808. "files": [
  1809. "src/functions.php"
  1810. ],
  1811. "psr-4": {
  1812. "Psy\\": "src/"
  1813. }
  1814. },
  1815. "notification-url": "https://packagist.org/downloads/",
  1816. "license": [
  1817. "MIT"
  1818. ],
  1819. "authors": [
  1820. {
  1821. "name": "Justin Hileman",
  1822. "email": "justin@justinhileman.info",
  1823. "homepage": "http://justinhileman.com"
  1824. }
  1825. ],
  1826. "description": "An interactive shell for modern PHP.",
  1827. "homepage": "http://psysh.org",
  1828. "keywords": [
  1829. "REPL",
  1830. "console",
  1831. "interactive",
  1832. "shell"
  1833. ],
  1834. "time": "2018-10-13T15:16:03+00:00"
  1835. },
  1836. {
  1837. "name": "ralouphie/getallheaders",
  1838. "version": "2.0.5",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/ralouphie/getallheaders.git",
  1842. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1847. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1848. "shasum": "",
  1849. "mirrors": [
  1850. {
  1851. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1852. "preferred": true
  1853. }
  1854. ]
  1855. },
  1856. "require": {
  1857. "php": ">=5.3"
  1858. },
  1859. "require-dev": {
  1860. "phpunit/phpunit": "~3.7.0",
  1861. "satooshi/php-coveralls": ">=1.0"
  1862. },
  1863. "type": "library",
  1864. "autoload": {
  1865. "files": [
  1866. "src/getallheaders.php"
  1867. ]
  1868. },
  1869. "notification-url": "https://packagist.org/downloads/",
  1870. "license": [
  1871. "MIT"
  1872. ],
  1873. "authors": [
  1874. {
  1875. "name": "Ralph Khattar",
  1876. "email": "ralph.khattar@gmail.com"
  1877. }
  1878. ],
  1879. "description": "A polyfill for getallheaders.",
  1880. "time": "2016-02-11T07:05:27+00:00"
  1881. },
  1882. {
  1883. "name": "ramsey/uuid",
  1884. "version": "3.8.0",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/ramsey/uuid.git",
  1888. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/ramsey/uuid/zipball/d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1893. "reference": "d09ea80159c1929d75b3f9c60504d613aeb4a1e3",
  1894. "shasum": "",
  1895. "mirrors": [
  1896. {
  1897. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1898. "preferred": true
  1899. }
  1900. ]
  1901. },
  1902. "require": {
  1903. "paragonie/random_compat": "^1.0|^2.0|9.99.99",
  1904. "php": "^5.4 || ^7.0",
  1905. "symfony/polyfill-ctype": "^1.8"
  1906. },
  1907. "replace": {
  1908. "rhumsaa/uuid": "self.version"
  1909. },
  1910. "require-dev": {
  1911. "codeception/aspect-mock": "^1.0 | ~2.0.0",
  1912. "doctrine/annotations": "~1.2.0",
  1913. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ~2.1.0",
  1914. "ircmaxell/random-lib": "^1.1",
  1915. "jakub-onderka/php-parallel-lint": "^0.9.0",
  1916. "mockery/mockery": "^0.9.9",
  1917. "moontoast/math": "^1.1",
  1918. "php-mock/php-mock-phpunit": "^0.3|^1.1",
  1919. "phpunit/phpunit": "^4.7|^5.0|^6.5",
  1920. "squizlabs/php_codesniffer": "^2.3"
  1921. },
  1922. "suggest": {
  1923. "ext-ctype": "Provides support for PHP Ctype functions",
  1924. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1925. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1926. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1927. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1928. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1929. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1930. },
  1931. "type": "library",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-master": "3.x-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Ramsey\\Uuid\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "authors": [
  1947. {
  1948. "name": "Marijn Huizendveld",
  1949. "email": "marijn.huizendveld@gmail.com"
  1950. },
  1951. {
  1952. "name": "Thibaud Fabre",
  1953. "email": "thibaud@aztech.io"
  1954. },
  1955. {
  1956. "name": "Ben Ramsey",
  1957. "email": "ben@benramsey.com",
  1958. "homepage": "https://benramsey.com"
  1959. }
  1960. ],
  1961. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1962. "homepage": "https://github.com/ramsey/uuid",
  1963. "keywords": [
  1964. "guid",
  1965. "identifier",
  1966. "uuid"
  1967. ],
  1968. "time": "2018-07-19T23:38:55+00:00"
  1969. },
  1970. {
  1971. "name": "swiftmailer/swiftmailer",
  1972. "version": "v6.2.0",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1976. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  1981. "reference": "6fa3232ff9d3f8237c0fae4b7ff05e1baa4cd707",
  1982. "shasum": "",
  1983. "mirrors": [
  1984. {
  1985. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  1986. "preferred": true
  1987. }
  1988. ]
  1989. },
  1990. "require": {
  1991. "egulias/email-validator": "~2.0",
  1992. "php": ">=7.0.0",
  1993. "symfony/polyfill-iconv": "^1.0",
  1994. "symfony/polyfill-intl-idn": "^1.10",
  1995. "symfony/polyfill-mbstring": "^1.0"
  1996. },
  1997. "require-dev": {
  1998. "mockery/mockery": "~0.9.1",
  1999. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  2000. },
  2001. "suggest": {
  2002. "ext-intl": "Needed to support internationalized email addresses",
  2003. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "6.2-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "files": [
  2013. "lib/swift_required.php"
  2014. ]
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "authors": [
  2021. {
  2022. "name": "Chris Corbyn"
  2023. },
  2024. {
  2025. "name": "Fabien Potencier",
  2026. "email": "fabien@symfony.com"
  2027. }
  2028. ],
  2029. "description": "Swiftmailer, free feature-rich PHP mailer",
  2030. "homepage": "https://swiftmailer.symfony.com",
  2031. "keywords": [
  2032. "email",
  2033. "mail",
  2034. "mailer"
  2035. ],
  2036. "time": "2019-03-10T07:52:41+00:00"
  2037. },
  2038. {
  2039. "name": "symfony/console",
  2040. "version": "v4.2.4",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/symfony/console.git",
  2044. "reference": "9dc2299a016497f9ee620be94524e6c0af0280a9"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/symfony/console/zipball/9dc2299a016497f9ee620be94524e6c0af0280a9",
  2049. "reference": "9dc2299a016497f9ee620be94524e6c0af0280a9",
  2050. "shasum": "",
  2051. "mirrors": [
  2052. {
  2053. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2054. "preferred": true
  2055. }
  2056. ]
  2057. },
  2058. "require": {
  2059. "php": "^7.1.3",
  2060. "symfony/contracts": "^1.0",
  2061. "symfony/polyfill-mbstring": "~1.0"
  2062. },
  2063. "conflict": {
  2064. "symfony/dependency-injection": "<3.4",
  2065. "symfony/process": "<3.3"
  2066. },
  2067. "provide": {
  2068. "psr/log-implementation": "1.0"
  2069. },
  2070. "require-dev": {
  2071. "psr/log": "~1.0",
  2072. "symfony/config": "~3.4|~4.0",
  2073. "symfony/dependency-injection": "~3.4|~4.0",
  2074. "symfony/event-dispatcher": "~3.4|~4.0",
  2075. "symfony/lock": "~3.4|~4.0",
  2076. "symfony/process": "~3.4|~4.0"
  2077. },
  2078. "suggest": {
  2079. "psr/log": "For using the console logger",
  2080. "symfony/event-dispatcher": "",
  2081. "symfony/lock": "",
  2082. "symfony/process": ""
  2083. },
  2084. "type": "library",
  2085. "extra": {
  2086. "branch-alias": {
  2087. "dev-master": "4.2-dev"
  2088. }
  2089. },
  2090. "autoload": {
  2091. "psr-4": {
  2092. "Symfony\\Component\\Console\\": ""
  2093. },
  2094. "exclude-from-classmap": [
  2095. "/Tests/"
  2096. ]
  2097. },
  2098. "notification-url": "https://packagist.org/downloads/",
  2099. "license": [
  2100. "MIT"
  2101. ],
  2102. "authors": [
  2103. {
  2104. "name": "Fabien Potencier",
  2105. "email": "fabien@symfony.com"
  2106. },
  2107. {
  2108. "name": "Symfony Community",
  2109. "homepage": "https://symfony.com/contributors"
  2110. }
  2111. ],
  2112. "description": "Symfony Console Component",
  2113. "homepage": "https://symfony.com",
  2114. "time": "2019-02-23T15:17:42+00:00"
  2115. },
  2116. {
  2117. "name": "symfony/contracts",
  2118. "version": "v1.0.2",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/symfony/contracts.git",
  2122. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/symfony/contracts/zipball/1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2127. "reference": "1aa7ab2429c3d594dd70689604b5cf7421254cdf",
  2128. "shasum": "",
  2129. "mirrors": [
  2130. {
  2131. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2132. "preferred": true
  2133. }
  2134. ]
  2135. },
  2136. "require": {
  2137. "php": "^7.1.3"
  2138. },
  2139. "require-dev": {
  2140. "psr/cache": "^1.0",
  2141. "psr/container": "^1.0"
  2142. },
  2143. "suggest": {
  2144. "psr/cache": "When using the Cache contracts",
  2145. "psr/container": "When using the Service contracts",
  2146. "symfony/cache-contracts-implementation": "",
  2147. "symfony/service-contracts-implementation": "",
  2148. "symfony/translation-contracts-implementation": ""
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "1.0-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Symfony\\Contracts\\": ""
  2159. },
  2160. "exclude-from-classmap": [
  2161. "**/Tests/"
  2162. ]
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Nicolas Grekas",
  2171. "email": "p@tchwork.com"
  2172. },
  2173. {
  2174. "name": "Symfony Community",
  2175. "homepage": "https://symfony.com/contributors"
  2176. }
  2177. ],
  2178. "description": "A set of abstractions extracted out of the Symfony components",
  2179. "homepage": "https://symfony.com",
  2180. "keywords": [
  2181. "abstractions",
  2182. "contracts",
  2183. "decoupling",
  2184. "interfaces",
  2185. "interoperability",
  2186. "standards"
  2187. ],
  2188. "time": "2018-12-05T08:06:11+00:00"
  2189. },
  2190. {
  2191. "name": "symfony/css-selector",
  2192. "version": "v4.2.4",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/symfony/css-selector.git",
  2196. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/symfony/css-selector/zipball/48eddf66950fa57996e1be4a55916d65c10c604a",
  2201. "reference": "48eddf66950fa57996e1be4a55916d65c10c604a",
  2202. "shasum": "",
  2203. "mirrors": [
  2204. {
  2205. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2206. "preferred": true
  2207. }
  2208. ]
  2209. },
  2210. "require": {
  2211. "php": "^7.1.3"
  2212. },
  2213. "type": "library",
  2214. "extra": {
  2215. "branch-alias": {
  2216. "dev-master": "4.2-dev"
  2217. }
  2218. },
  2219. "autoload": {
  2220. "psr-4": {
  2221. "Symfony\\Component\\CssSelector\\": ""
  2222. },
  2223. "exclude-from-classmap": [
  2224. "/Tests/"
  2225. ]
  2226. },
  2227. "notification-url": "https://packagist.org/downloads/",
  2228. "license": [
  2229. "MIT"
  2230. ],
  2231. "authors": [
  2232. {
  2233. "name": "Jean-François Simon",
  2234. "email": "jeanfrancois.simon@sensiolabs.com"
  2235. },
  2236. {
  2237. "name": "Fabien Potencier",
  2238. "email": "fabien@symfony.com"
  2239. },
  2240. {
  2241. "name": "Symfony Community",
  2242. "homepage": "https://symfony.com/contributors"
  2243. }
  2244. ],
  2245. "description": "Symfony CssSelector Component",
  2246. "homepage": "https://symfony.com",
  2247. "time": "2019-01-16T20:31:39+00:00"
  2248. },
  2249. {
  2250. "name": "symfony/debug",
  2251. "version": "v4.2.4",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/symfony/debug.git",
  2255. "reference": "de73f48977b8eaf7ce22814d66e43a1662cc864f"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/symfony/debug/zipball/de73f48977b8eaf7ce22814d66e43a1662cc864f",
  2260. "reference": "de73f48977b8eaf7ce22814d66e43a1662cc864f",
  2261. "shasum": "",
  2262. "mirrors": [
  2263. {
  2264. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2265. "preferred": true
  2266. }
  2267. ]
  2268. },
  2269. "require": {
  2270. "php": "^7.1.3",
  2271. "psr/log": "~1.0"
  2272. },
  2273. "conflict": {
  2274. "symfony/http-kernel": "<3.4"
  2275. },
  2276. "require-dev": {
  2277. "symfony/http-kernel": "~3.4|~4.0"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "4.2-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Symfony\\Component\\Debug\\": ""
  2288. },
  2289. "exclude-from-classmap": [
  2290. "/Tests/"
  2291. ]
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Fabien Potencier",
  2300. "email": "fabien@symfony.com"
  2301. },
  2302. {
  2303. "name": "Symfony Community",
  2304. "homepage": "https://symfony.com/contributors"
  2305. }
  2306. ],
  2307. "description": "Symfony Debug Component",
  2308. "homepage": "https://symfony.com",
  2309. "time": "2019-03-03T18:11:24+00:00"
  2310. },
  2311. {
  2312. "name": "symfony/event-dispatcher",
  2313. "version": "v4.2.4",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/symfony/event-dispatcher.git",
  2317. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  2322. "reference": "3354d2e6af986dd71f68b4e5cf4a933ab58697fb",
  2323. "shasum": "",
  2324. "mirrors": [
  2325. {
  2326. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2327. "preferred": true
  2328. }
  2329. ]
  2330. },
  2331. "require": {
  2332. "php": "^7.1.3",
  2333. "symfony/contracts": "^1.0"
  2334. },
  2335. "conflict": {
  2336. "symfony/dependency-injection": "<3.4"
  2337. },
  2338. "require-dev": {
  2339. "psr/log": "~1.0",
  2340. "symfony/config": "~3.4|~4.0",
  2341. "symfony/dependency-injection": "~3.4|~4.0",
  2342. "symfony/expression-language": "~3.4|~4.0",
  2343. "symfony/stopwatch": "~3.4|~4.0"
  2344. },
  2345. "suggest": {
  2346. "symfony/dependency-injection": "",
  2347. "symfony/http-kernel": ""
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "4.2-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Symfony\\Component\\EventDispatcher\\": ""
  2358. },
  2359. "exclude-from-classmap": [
  2360. "/Tests/"
  2361. ]
  2362. },
  2363. "notification-url": "https://packagist.org/downloads/",
  2364. "license": [
  2365. "MIT"
  2366. ],
  2367. "authors": [
  2368. {
  2369. "name": "Fabien Potencier",
  2370. "email": "fabien@symfony.com"
  2371. },
  2372. {
  2373. "name": "Symfony Community",
  2374. "homepage": "https://symfony.com/contributors"
  2375. }
  2376. ],
  2377. "description": "Symfony EventDispatcher Component",
  2378. "homepage": "https://symfony.com",
  2379. "time": "2019-02-23T15:17:42+00:00"
  2380. },
  2381. {
  2382. "name": "symfony/finder",
  2383. "version": "v4.2.4",
  2384. "source": {
  2385. "type": "git",
  2386. "url": "https://github.com/symfony/finder.git",
  2387. "reference": "267b7002c1b70ea80db0833c3afe05f0fbde580a"
  2388. },
  2389. "dist": {
  2390. "type": "zip",
  2391. "url": "https://api.github.com/repos/symfony/finder/zipball/267b7002c1b70ea80db0833c3afe05f0fbde580a",
  2392. "reference": "267b7002c1b70ea80db0833c3afe05f0fbde580a",
  2393. "shasum": "",
  2394. "mirrors": [
  2395. {
  2396. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2397. "preferred": true
  2398. }
  2399. ]
  2400. },
  2401. "require": {
  2402. "php": "^7.1.3"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "branch-alias": {
  2407. "dev-master": "4.2-dev"
  2408. }
  2409. },
  2410. "autoload": {
  2411. "psr-4": {
  2412. "Symfony\\Component\\Finder\\": ""
  2413. },
  2414. "exclude-from-classmap": [
  2415. "/Tests/"
  2416. ]
  2417. },
  2418. "notification-url": "https://packagist.org/downloads/",
  2419. "license": [
  2420. "MIT"
  2421. ],
  2422. "authors": [
  2423. {
  2424. "name": "Fabien Potencier",
  2425. "email": "fabien@symfony.com"
  2426. },
  2427. {
  2428. "name": "Symfony Community",
  2429. "homepage": "https://symfony.com/contributors"
  2430. }
  2431. ],
  2432. "description": "Symfony Finder Component",
  2433. "homepage": "https://symfony.com",
  2434. "time": "2019-02-23T15:42:05+00:00"
  2435. },
  2436. {
  2437. "name": "symfony/http-foundation",
  2438. "version": "v4.2.4",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/symfony/http-foundation.git",
  2442. "reference": "850a667d6254ccf6c61d853407b16f21c4579c77"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/850a667d6254ccf6c61d853407b16f21c4579c77",
  2447. "reference": "850a667d6254ccf6c61d853407b16f21c4579c77",
  2448. "shasum": "",
  2449. "mirrors": [
  2450. {
  2451. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2452. "preferred": true
  2453. }
  2454. ]
  2455. },
  2456. "require": {
  2457. "php": "^7.1.3",
  2458. "symfony/polyfill-mbstring": "~1.1"
  2459. },
  2460. "require-dev": {
  2461. "predis/predis": "~1.0",
  2462. "symfony/expression-language": "~3.4|~4.0"
  2463. },
  2464. "type": "library",
  2465. "extra": {
  2466. "branch-alias": {
  2467. "dev-master": "4.2-dev"
  2468. }
  2469. },
  2470. "autoload": {
  2471. "psr-4": {
  2472. "Symfony\\Component\\HttpFoundation\\": ""
  2473. },
  2474. "exclude-from-classmap": [
  2475. "/Tests/"
  2476. ]
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "Fabien Potencier",
  2485. "email": "fabien@symfony.com"
  2486. },
  2487. {
  2488. "name": "Symfony Community",
  2489. "homepage": "https://symfony.com/contributors"
  2490. }
  2491. ],
  2492. "description": "Symfony HttpFoundation Component",
  2493. "homepage": "https://symfony.com",
  2494. "time": "2019-02-26T08:03:39+00:00"
  2495. },
  2496. {
  2497. "name": "symfony/http-kernel",
  2498. "version": "v4.2.4",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/symfony/http-kernel.git",
  2502. "reference": "895ceccaa8149f9343e6134e607c21da42d73b7a"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/895ceccaa8149f9343e6134e607c21da42d73b7a",
  2507. "reference": "895ceccaa8149f9343e6134e607c21da42d73b7a",
  2508. "shasum": "",
  2509. "mirrors": [
  2510. {
  2511. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2512. "preferred": true
  2513. }
  2514. ]
  2515. },
  2516. "require": {
  2517. "php": "^7.1.3",
  2518. "psr/log": "~1.0",
  2519. "symfony/contracts": "^1.0.2",
  2520. "symfony/debug": "~3.4|~4.0",
  2521. "symfony/event-dispatcher": "~4.1",
  2522. "symfony/http-foundation": "^4.1.1",
  2523. "symfony/polyfill-ctype": "~1.8"
  2524. },
  2525. "conflict": {
  2526. "symfony/config": "<3.4",
  2527. "symfony/dependency-injection": "<4.2",
  2528. "symfony/translation": "<4.2",
  2529. "symfony/var-dumper": "<4.1.1",
  2530. "twig/twig": "<1.34|<2.4,>=2"
  2531. },
  2532. "provide": {
  2533. "psr/log-implementation": "1.0"
  2534. },
  2535. "require-dev": {
  2536. "psr/cache": "~1.0",
  2537. "symfony/browser-kit": "~3.4|~4.0",
  2538. "symfony/config": "~3.4|~4.0",
  2539. "symfony/console": "~3.4|~4.0",
  2540. "symfony/css-selector": "~3.4|~4.0",
  2541. "symfony/dependency-injection": "^4.2",
  2542. "symfony/dom-crawler": "~3.4|~4.0",
  2543. "symfony/expression-language": "~3.4|~4.0",
  2544. "symfony/finder": "~3.4|~4.0",
  2545. "symfony/process": "~3.4|~4.0",
  2546. "symfony/routing": "~3.4|~4.0",
  2547. "symfony/stopwatch": "~3.4|~4.0",
  2548. "symfony/templating": "~3.4|~4.0",
  2549. "symfony/translation": "~4.2",
  2550. "symfony/var-dumper": "^4.1.1"
  2551. },
  2552. "suggest": {
  2553. "symfony/browser-kit": "",
  2554. "symfony/config": "",
  2555. "symfony/console": "",
  2556. "symfony/dependency-injection": "",
  2557. "symfony/var-dumper": ""
  2558. },
  2559. "type": "library",
  2560. "extra": {
  2561. "branch-alias": {
  2562. "dev-master": "4.2-dev"
  2563. }
  2564. },
  2565. "autoload": {
  2566. "psr-4": {
  2567. "Symfony\\Component\\HttpKernel\\": ""
  2568. },
  2569. "exclude-from-classmap": [
  2570. "/Tests/"
  2571. ]
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Fabien Potencier",
  2580. "email": "fabien@symfony.com"
  2581. },
  2582. {
  2583. "name": "Symfony Community",
  2584. "homepage": "https://symfony.com/contributors"
  2585. }
  2586. ],
  2587. "description": "Symfony HttpKernel Component",
  2588. "homepage": "https://symfony.com",
  2589. "time": "2019-03-03T19:38:09+00:00"
  2590. },
  2591. {
  2592. "name": "symfony/polyfill-ctype",
  2593. "version": "v1.11.0",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/symfony/polyfill-ctype.git",
  2597. "reference": "82ebae02209c21113908c229e9883c419720738a"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
  2602. "reference": "82ebae02209c21113908c229e9883c419720738a",
  2603. "shasum": "",
  2604. "mirrors": [
  2605. {
  2606. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2607. "preferred": true
  2608. }
  2609. ]
  2610. },
  2611. "require": {
  2612. "php": ">=5.3.3"
  2613. },
  2614. "suggest": {
  2615. "ext-ctype": "For best performance"
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "branch-alias": {
  2620. "dev-master": "1.11-dev"
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Symfony\\Polyfill\\Ctype\\": ""
  2626. },
  2627. "files": [
  2628. "bootstrap.php"
  2629. ]
  2630. },
  2631. "notification-url": "https://packagist.org/downloads/",
  2632. "license": [
  2633. "MIT"
  2634. ],
  2635. "authors": [
  2636. {
  2637. "name": "Symfony Community",
  2638. "homepage": "https://symfony.com/contributors"
  2639. },
  2640. {
  2641. "name": "Gert de Pagter",
  2642. "email": "BackEndTea@gmail.com"
  2643. }
  2644. ],
  2645. "description": "Symfony polyfill for ctype functions",
  2646. "homepage": "https://symfony.com",
  2647. "keywords": [
  2648. "compatibility",
  2649. "ctype",
  2650. "polyfill",
  2651. "portable"
  2652. ],
  2653. "time": "2019-02-06T07:57:58+00:00"
  2654. },
  2655. {
  2656. "name": "symfony/polyfill-iconv",
  2657. "version": "v1.11.0",
  2658. "source": {
  2659. "type": "git",
  2660. "url": "https://github.com/symfony/polyfill-iconv.git",
  2661. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7"
  2662. },
  2663. "dist": {
  2664. "type": "zip",
  2665. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2666. "reference": "f037ea22acfaee983e271dd9c3b8bb4150bd8ad7",
  2667. "shasum": "",
  2668. "mirrors": [
  2669. {
  2670. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2671. "preferred": true
  2672. }
  2673. ]
  2674. },
  2675. "require": {
  2676. "php": ">=5.3.3"
  2677. },
  2678. "suggest": {
  2679. "ext-iconv": "For best performance"
  2680. },
  2681. "type": "library",
  2682. "extra": {
  2683. "branch-alias": {
  2684. "dev-master": "1.11-dev"
  2685. }
  2686. },
  2687. "autoload": {
  2688. "psr-4": {
  2689. "Symfony\\Polyfill\\Iconv\\": ""
  2690. },
  2691. "files": [
  2692. "bootstrap.php"
  2693. ]
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Nicolas Grekas",
  2702. "email": "p@tchwork.com"
  2703. },
  2704. {
  2705. "name": "Symfony Community",
  2706. "homepage": "https://symfony.com/contributors"
  2707. }
  2708. ],
  2709. "description": "Symfony polyfill for the Iconv extension",
  2710. "homepage": "https://symfony.com",
  2711. "keywords": [
  2712. "compatibility",
  2713. "iconv",
  2714. "polyfill",
  2715. "portable",
  2716. "shim"
  2717. ],
  2718. "time": "2019-02-06T07:57:58+00:00"
  2719. },
  2720. {
  2721. "name": "symfony/polyfill-intl-idn",
  2722. "version": "v1.11.0",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2726. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  2731. "reference": "c766e95bec706cdd89903b1eda8afab7d7a6b7af",
  2732. "shasum": "",
  2733. "mirrors": [
  2734. {
  2735. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2736. "preferred": true
  2737. }
  2738. ]
  2739. },
  2740. "require": {
  2741. "php": ">=5.3.3",
  2742. "symfony/polyfill-mbstring": "^1.3",
  2743. "symfony/polyfill-php72": "^1.9"
  2744. },
  2745. "suggest": {
  2746. "ext-intl": "For best performance"
  2747. },
  2748. "type": "library",
  2749. "extra": {
  2750. "branch-alias": {
  2751. "dev-master": "1.9-dev"
  2752. }
  2753. },
  2754. "autoload": {
  2755. "psr-4": {
  2756. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2757. },
  2758. "files": [
  2759. "bootstrap.php"
  2760. ]
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Symfony Community",
  2769. "homepage": "https://symfony.com/contributors"
  2770. },
  2771. {
  2772. "name": "Laurent Bassin",
  2773. "email": "laurent@bassin.info"
  2774. }
  2775. ],
  2776. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2777. "homepage": "https://symfony.com",
  2778. "keywords": [
  2779. "compatibility",
  2780. "idn",
  2781. "intl",
  2782. "polyfill",
  2783. "portable",
  2784. "shim"
  2785. ],
  2786. "time": "2019-03-04T13:44:35+00:00"
  2787. },
  2788. {
  2789. "name": "symfony/polyfill-mbstring",
  2790. "version": "v1.11.0",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2794. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2799. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2800. "shasum": "",
  2801. "mirrors": [
  2802. {
  2803. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2804. "preferred": true
  2805. }
  2806. ]
  2807. },
  2808. "require": {
  2809. "php": ">=5.3.3"
  2810. },
  2811. "suggest": {
  2812. "ext-mbstring": "For best performance"
  2813. },
  2814. "type": "library",
  2815. "extra": {
  2816. "branch-alias": {
  2817. "dev-master": "1.11-dev"
  2818. }
  2819. },
  2820. "autoload": {
  2821. "psr-4": {
  2822. "Symfony\\Polyfill\\Mbstring\\": ""
  2823. },
  2824. "files": [
  2825. "bootstrap.php"
  2826. ]
  2827. },
  2828. "notification-url": "https://packagist.org/downloads/",
  2829. "license": [
  2830. "MIT"
  2831. ],
  2832. "authors": [
  2833. {
  2834. "name": "Nicolas Grekas",
  2835. "email": "p@tchwork.com"
  2836. },
  2837. {
  2838. "name": "Symfony Community",
  2839. "homepage": "https://symfony.com/contributors"
  2840. }
  2841. ],
  2842. "description": "Symfony polyfill for the Mbstring extension",
  2843. "homepage": "https://symfony.com",
  2844. "keywords": [
  2845. "compatibility",
  2846. "mbstring",
  2847. "polyfill",
  2848. "portable",
  2849. "shim"
  2850. ],
  2851. "time": "2019-02-06T07:57:58+00:00"
  2852. },
  2853. {
  2854. "name": "symfony/polyfill-php72",
  2855. "version": "v1.11.0",
  2856. "source": {
  2857. "type": "git",
  2858. "url": "https://github.com/symfony/polyfill-php72.git",
  2859. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2860. },
  2861. "dist": {
  2862. "type": "zip",
  2863. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2864. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2865. "shasum": "",
  2866. "mirrors": [
  2867. {
  2868. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2869. "preferred": true
  2870. }
  2871. ]
  2872. },
  2873. "require": {
  2874. "php": ">=5.3.3"
  2875. },
  2876. "type": "library",
  2877. "extra": {
  2878. "branch-alias": {
  2879. "dev-master": "1.11-dev"
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "Symfony\\Polyfill\\Php72\\": ""
  2885. },
  2886. "files": [
  2887. "bootstrap.php"
  2888. ]
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Nicolas Grekas",
  2897. "email": "p@tchwork.com"
  2898. },
  2899. {
  2900. "name": "Symfony Community",
  2901. "homepage": "https://symfony.com/contributors"
  2902. }
  2903. ],
  2904. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2905. "homepage": "https://symfony.com",
  2906. "keywords": [
  2907. "compatibility",
  2908. "polyfill",
  2909. "portable",
  2910. "shim"
  2911. ],
  2912. "time": "2019-02-06T07:57:58+00:00"
  2913. },
  2914. {
  2915. "name": "symfony/process",
  2916. "version": "v4.2.4",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/symfony/process.git",
  2920. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/symfony/process/zipball/6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  2925. "reference": "6c05edb11fbeff9e2b324b4270ecb17911a8b7ad",
  2926. "shasum": "",
  2927. "mirrors": [
  2928. {
  2929. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2930. "preferred": true
  2931. }
  2932. ]
  2933. },
  2934. "require": {
  2935. "php": "^7.1.3"
  2936. },
  2937. "type": "library",
  2938. "extra": {
  2939. "branch-alias": {
  2940. "dev-master": "4.2-dev"
  2941. }
  2942. },
  2943. "autoload": {
  2944. "psr-4": {
  2945. "Symfony\\Component\\Process\\": ""
  2946. },
  2947. "exclude-from-classmap": [
  2948. "/Tests/"
  2949. ]
  2950. },
  2951. "notification-url": "https://packagist.org/downloads/",
  2952. "license": [
  2953. "MIT"
  2954. ],
  2955. "authors": [
  2956. {
  2957. "name": "Fabien Potencier",
  2958. "email": "fabien@symfony.com"
  2959. },
  2960. {
  2961. "name": "Symfony Community",
  2962. "homepage": "https://symfony.com/contributors"
  2963. }
  2964. ],
  2965. "description": "Symfony Process Component",
  2966. "homepage": "https://symfony.com",
  2967. "time": "2019-01-24T22:05:03+00:00"
  2968. },
  2969. {
  2970. "name": "symfony/routing",
  2971. "version": "v4.2.4",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/symfony/routing.git",
  2975. "reference": "ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/symfony/routing/zipball/ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42",
  2980. "reference": "ff03eae644e6b1e26d4a04b2385fe3a1a7f04e42",
  2981. "shasum": "",
  2982. "mirrors": [
  2983. {
  2984. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  2985. "preferred": true
  2986. }
  2987. ]
  2988. },
  2989. "require": {
  2990. "php": "^7.1.3"
  2991. },
  2992. "conflict": {
  2993. "symfony/config": "<4.2",
  2994. "symfony/dependency-injection": "<3.4",
  2995. "symfony/yaml": "<3.4"
  2996. },
  2997. "require-dev": {
  2998. "doctrine/annotations": "~1.0",
  2999. "psr/log": "~1.0",
  3000. "symfony/config": "~4.2",
  3001. "symfony/dependency-injection": "~3.4|~4.0",
  3002. "symfony/expression-language": "~3.4|~4.0",
  3003. "symfony/http-foundation": "~3.4|~4.0",
  3004. "symfony/yaml": "~3.4|~4.0"
  3005. },
  3006. "suggest": {
  3007. "doctrine/annotations": "For using the annotation loader",
  3008. "symfony/config": "For using the all-in-one router or any loader",
  3009. "symfony/dependency-injection": "For loading routes from a service",
  3010. "symfony/expression-language": "For using expression matching",
  3011. "symfony/http-foundation": "For using a Symfony Request object",
  3012. "symfony/yaml": "For using the YAML loader"
  3013. },
  3014. "type": "library",
  3015. "extra": {
  3016. "branch-alias": {
  3017. "dev-master": "4.2-dev"
  3018. }
  3019. },
  3020. "autoload": {
  3021. "psr-4": {
  3022. "Symfony\\Component\\Routing\\": ""
  3023. },
  3024. "exclude-from-classmap": [
  3025. "/Tests/"
  3026. ]
  3027. },
  3028. "notification-url": "https://packagist.org/downloads/",
  3029. "license": [
  3030. "MIT"
  3031. ],
  3032. "authors": [
  3033. {
  3034. "name": "Fabien Potencier",
  3035. "email": "fabien@symfony.com"
  3036. },
  3037. {
  3038. "name": "Symfony Community",
  3039. "homepage": "https://symfony.com/contributors"
  3040. }
  3041. ],
  3042. "description": "Symfony Routing Component",
  3043. "homepage": "https://symfony.com",
  3044. "keywords": [
  3045. "router",
  3046. "routing",
  3047. "uri",
  3048. "url"
  3049. ],
  3050. "time": "2019-02-23T15:17:42+00:00"
  3051. },
  3052. {
  3053. "name": "symfony/translation",
  3054. "version": "v4.2.4",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/symfony/translation.git",
  3058. "reference": "748464177a77011f8f4cdd076773862ce4915f8f"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/symfony/translation/zipball/748464177a77011f8f4cdd076773862ce4915f8f",
  3063. "reference": "748464177a77011f8f4cdd076773862ce4915f8f",
  3064. "shasum": "",
  3065. "mirrors": [
  3066. {
  3067. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3068. "preferred": true
  3069. }
  3070. ]
  3071. },
  3072. "require": {
  3073. "php": "^7.1.3",
  3074. "symfony/contracts": "^1.0.2",
  3075. "symfony/polyfill-mbstring": "~1.0"
  3076. },
  3077. "conflict": {
  3078. "symfony/config": "<3.4",
  3079. "symfony/dependency-injection": "<3.4",
  3080. "symfony/yaml": "<3.4"
  3081. },
  3082. "provide": {
  3083. "symfony/translation-contracts-implementation": "1.0"
  3084. },
  3085. "require-dev": {
  3086. "psr/log": "~1.0",
  3087. "symfony/config": "~3.4|~4.0",
  3088. "symfony/console": "~3.4|~4.0",
  3089. "symfony/dependency-injection": "~3.4|~4.0",
  3090. "symfony/finder": "~2.8|~3.0|~4.0",
  3091. "symfony/intl": "~3.4|~4.0",
  3092. "symfony/yaml": "~3.4|~4.0"
  3093. },
  3094. "suggest": {
  3095. "psr/log-implementation": "To use logging capability in translator",
  3096. "symfony/config": "",
  3097. "symfony/yaml": ""
  3098. },
  3099. "type": "library",
  3100. "extra": {
  3101. "branch-alias": {
  3102. "dev-master": "4.2-dev"
  3103. }
  3104. },
  3105. "autoload": {
  3106. "psr-4": {
  3107. "Symfony\\Component\\Translation\\": ""
  3108. },
  3109. "exclude-from-classmap": [
  3110. "/Tests/"
  3111. ]
  3112. },
  3113. "notification-url": "https://packagist.org/downloads/",
  3114. "license": [
  3115. "MIT"
  3116. ],
  3117. "authors": [
  3118. {
  3119. "name": "Fabien Potencier",
  3120. "email": "fabien@symfony.com"
  3121. },
  3122. {
  3123. "name": "Symfony Community",
  3124. "homepage": "https://symfony.com/contributors"
  3125. }
  3126. ],
  3127. "description": "Symfony Translation Component",
  3128. "homepage": "https://symfony.com",
  3129. "time": "2019-02-27T03:31:50+00:00"
  3130. },
  3131. {
  3132. "name": "symfony/var-dumper",
  3133. "version": "v4.2.4",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://github.com/symfony/var-dumper.git",
  3137. "reference": "9f87189ac10b42edf7fb8edc846f1937c6d157cf"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9f87189ac10b42edf7fb8edc846f1937c6d157cf",
  3142. "reference": "9f87189ac10b42edf7fb8edc846f1937c6d157cf",
  3143. "shasum": "",
  3144. "mirrors": [
  3145. {
  3146. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3147. "preferred": true
  3148. }
  3149. ]
  3150. },
  3151. "require": {
  3152. "php": "^7.1.3",
  3153. "symfony/polyfill-mbstring": "~1.0",
  3154. "symfony/polyfill-php72": "~1.5"
  3155. },
  3156. "conflict": {
  3157. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3158. "symfony/console": "<3.4"
  3159. },
  3160. "require-dev": {
  3161. "ext-iconv": "*",
  3162. "symfony/console": "~3.4|~4.0",
  3163. "symfony/process": "~3.4|~4.0",
  3164. "twig/twig": "~1.34|~2.4"
  3165. },
  3166. "suggest": {
  3167. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3168. "ext-intl": "To show region name in time zone dump",
  3169. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3170. },
  3171. "bin": [
  3172. "Resources/bin/var-dump-server"
  3173. ],
  3174. "type": "library",
  3175. "extra": {
  3176. "branch-alias": {
  3177. "dev-master": "4.2-dev"
  3178. }
  3179. },
  3180. "autoload": {
  3181. "files": [
  3182. "Resources/functions/dump.php"
  3183. ],
  3184. "psr-4": {
  3185. "Symfony\\Component\\VarDumper\\": ""
  3186. },
  3187. "exclude-from-classmap": [
  3188. "/Tests/"
  3189. ]
  3190. },
  3191. "notification-url": "https://packagist.org/downloads/",
  3192. "license": [
  3193. "MIT"
  3194. ],
  3195. "authors": [
  3196. {
  3197. "name": "Nicolas Grekas",
  3198. "email": "p@tchwork.com"
  3199. },
  3200. {
  3201. "name": "Symfony Community",
  3202. "homepage": "https://symfony.com/contributors"
  3203. }
  3204. ],
  3205. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3206. "homepage": "https://symfony.com",
  3207. "keywords": [
  3208. "debug",
  3209. "dump"
  3210. ],
  3211. "time": "2019-02-23T15:17:42+00:00"
  3212. },
  3213. {
  3214. "name": "tijsverkoyen/css-to-inline-styles",
  3215. "version": "2.2.1",
  3216. "source": {
  3217. "type": "git",
  3218. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3219. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757"
  3220. },
  3221. "dist": {
  3222. "type": "zip",
  3223. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  3224. "reference": "0ed4a2ea4e0902dac0489e6436ebcd5bbcae9757",
  3225. "shasum": "",
  3226. "mirrors": [
  3227. {
  3228. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3229. "preferred": true
  3230. }
  3231. ]
  3232. },
  3233. "require": {
  3234. "php": "^5.5 || ^7.0",
  3235. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0"
  3236. },
  3237. "require-dev": {
  3238. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-master": "2.2.x-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "BSD-3-Clause"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Tijs Verkoyen",
  3258. "email": "css_to_inline_styles@verkoyen.eu",
  3259. "role": "Developer"
  3260. }
  3261. ],
  3262. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  3263. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  3264. "time": "2017-11-27T11:13:29+00:00"
  3265. },
  3266. {
  3267. "name": "tinify/tinify",
  3268. "version": "1.5.2",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/tinify/tinify-php.git",
  3272. "reference": "b15d1f31d94d9b06e60251543cc918f426f0d55b"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/tinify/tinify-php/zipball/b15d1f31d94d9b06e60251543cc918f426f0d55b",
  3277. "reference": "b15d1f31d94d9b06e60251543cc918f426f0d55b",
  3278. "shasum": "",
  3279. "mirrors": [
  3280. {
  3281. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3282. "preferred": true
  3283. }
  3284. ]
  3285. },
  3286. "require": {
  3287. "ext-curl": "*",
  3288. "ext-json": "*",
  3289. "lib-curl": ">=7.20.0",
  3290. "php": ">=5.3.0"
  3291. },
  3292. "require-dev": {
  3293. "phpunit/phpunit": "~4.0",
  3294. "symfony/yaml": "~2.0"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "files": [
  3299. "lib/Tinify.php",
  3300. "lib/Tinify/Exception.php"
  3301. ],
  3302. "psr-4": {
  3303. "Tinify\\": "lib/Tinify/"
  3304. }
  3305. },
  3306. "notification-url": "https://packagist.org/downloads/",
  3307. "license": [
  3308. "MIT"
  3309. ],
  3310. "authors": [
  3311. {
  3312. "name": "Rolf Timmermans",
  3313. "email": "rolftimmermans@voormedia.com"
  3314. }
  3315. ],
  3316. "description": "PHP client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.",
  3317. "homepage": "https://tinify.com/developers",
  3318. "keywords": [
  3319. "api",
  3320. "compress",
  3321. "images",
  3322. "tinify",
  3323. "tinyjpg",
  3324. "tinypng"
  3325. ],
  3326. "time": "2017-07-19T12:26:04+00:00"
  3327. },
  3328. {
  3329. "name": "vlucas/phpdotenv",
  3330. "version": "v3.3.3",
  3331. "source": {
  3332. "type": "git",
  3333. "url": "https://github.com/vlucas/phpdotenv.git",
  3334. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde"
  3335. },
  3336. "dist": {
  3337. "type": "zip",
  3338. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/dbcc609971dd9b55f48b8008b553d79fd372ddde",
  3339. "reference": "dbcc609971dd9b55f48b8008b553d79fd372ddde",
  3340. "shasum": "",
  3341. "mirrors": [
  3342. {
  3343. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3344. "preferred": true
  3345. }
  3346. ]
  3347. },
  3348. "require": {
  3349. "php": "^5.4 || ^7.0",
  3350. "phpoption/phpoption": "^1.5",
  3351. "symfony/polyfill-ctype": "^1.9"
  3352. },
  3353. "require-dev": {
  3354. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0"
  3355. },
  3356. "type": "library",
  3357. "extra": {
  3358. "branch-alias": {
  3359. "dev-master": "3.3-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Dotenv\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "BSD-3-Clause"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Vance Lucas",
  3374. "email": "vance@vancelucas.com",
  3375. "homepage": "http://www.vancelucas.com"
  3376. }
  3377. ],
  3378. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3379. "keywords": [
  3380. "dotenv",
  3381. "env",
  3382. "environment"
  3383. ],
  3384. "time": "2019-03-06T09:39:45+00:00"
  3385. },
  3386. {
  3387. "name": "yasmuru/ys-tinify-laravel",
  3388. "version": "v1.0.2",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/yasmuru/ys-tinify-laravel.git",
  3392. "reference": "4c8564e4847bfab08c56d85cfaf5513ffb130b6c"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/yasmuru/ys-tinify-laravel/zipball/4c8564e4847bfab08c56d85cfaf5513ffb130b6c",
  3397. "reference": "4c8564e4847bfab08c56d85cfaf5513ffb130b6c",
  3398. "shasum": "",
  3399. "mirrors": [
  3400. {
  3401. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3402. "preferred": true
  3403. }
  3404. ]
  3405. },
  3406. "require": {
  3407. "illuminate/support": "~5.2",
  3408. "php": ">=5.5.0",
  3409. "tinify/tinify": "*"
  3410. },
  3411. "type": "library",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "yasmuru\\LaravelTinify\\": "src"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "yasmuru",
  3424. "email": "yasmuru@gmail.com"
  3425. }
  3426. ],
  3427. "description": "Tinify API support with laravel",
  3428. "keywords": [
  3429. "laravel",
  3430. "tinify",
  3431. "tinypng"
  3432. ],
  3433. "time": "2018-01-25T09:45:08+00:00"
  3434. }
  3435. ],
  3436. "packages-dev": [
  3437. {
  3438. "name": "beyondcode/laravel-dump-server",
  3439. "version": "1.2.2",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://github.com/beyondcode/laravel-dump-server.git",
  3443. "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://api.github.com/repos/beyondcode/laravel-dump-server/zipball/8864b9efcb48e0a79e83014dd7f0a5481f5c808f",
  3448. "reference": "8864b9efcb48e0a79e83014dd7f0a5481f5c808f",
  3449. "shasum": "",
  3450. "mirrors": [
  3451. {
  3452. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3453. "preferred": true
  3454. }
  3455. ]
  3456. },
  3457. "require": {
  3458. "illuminate/console": "5.6.*|5.7.*|5.8.*",
  3459. "illuminate/http": "5.6.*|5.7.*|5.8.*",
  3460. "illuminate/support": "5.6.*|5.7.*|5.8.*",
  3461. "php": "^7.1",
  3462. "symfony/var-dumper": "^4.1.1"
  3463. },
  3464. "require-dev": {
  3465. "larapack/dd": "^1.0",
  3466. "phpunit/phpunit": "^7.0"
  3467. },
  3468. "type": "library",
  3469. "extra": {
  3470. "laravel": {
  3471. "providers": [
  3472. "BeyondCode\\DumpServer\\DumpServerServiceProvider"
  3473. ]
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "BeyondCode\\DumpServer\\": "src"
  3479. },
  3480. "files": [
  3481. "helpers.php"
  3482. ]
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "authors": [
  3489. {
  3490. "name": "Marcel Pociot",
  3491. "email": "marcel@beyondco.de",
  3492. "homepage": "https://beyondcode.de",
  3493. "role": "Developer"
  3494. }
  3495. ],
  3496. "description": "Symfony Var-Dump Server for Laravel",
  3497. "homepage": "https://github.com/beyondcode/laravel-dump-server",
  3498. "keywords": [
  3499. "beyondcode",
  3500. "laravel-dump-server"
  3501. ],
  3502. "time": "2018-10-04T07:22:24+00:00"
  3503. },
  3504. {
  3505. "name": "doctrine/instantiator",
  3506. "version": "1.2.0",
  3507. "source": {
  3508. "type": "git",
  3509. "url": "https://github.com/doctrine/instantiator.git",
  3510. "reference": "a2c590166b2133a4633738648b6b064edae0814a"
  3511. },
  3512. "dist": {
  3513. "type": "zip",
  3514. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/a2c590166b2133a4633738648b6b064edae0814a",
  3515. "reference": "a2c590166b2133a4633738648b6b064edae0814a",
  3516. "shasum": "",
  3517. "mirrors": [
  3518. {
  3519. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3520. "preferred": true
  3521. }
  3522. ]
  3523. },
  3524. "require": {
  3525. "php": "^7.1"
  3526. },
  3527. "require-dev": {
  3528. "doctrine/coding-standard": "^6.0",
  3529. "ext-pdo": "*",
  3530. "ext-phar": "*",
  3531. "phpbench/phpbench": "^0.13",
  3532. "phpstan/phpstan-phpunit": "^0.11",
  3533. "phpstan/phpstan-shim": "^0.11",
  3534. "phpunit/phpunit": "^7.0"
  3535. },
  3536. "type": "library",
  3537. "extra": {
  3538. "branch-alias": {
  3539. "dev-master": "1.2.x-dev"
  3540. }
  3541. },
  3542. "autoload": {
  3543. "psr-4": {
  3544. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "MIT"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "Marco Pivetta",
  3554. "email": "ocramius@gmail.com",
  3555. "homepage": "http://ocramius.github.com/"
  3556. }
  3557. ],
  3558. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3559. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3560. "keywords": [
  3561. "constructor",
  3562. "instantiate"
  3563. ],
  3564. "time": "2019-03-17T17:37:11+00:00"
  3565. },
  3566. {
  3567. "name": "filp/whoops",
  3568. "version": "2.3.1",
  3569. "source": {
  3570. "type": "git",
  3571. "url": "https://github.com/filp/whoops.git",
  3572. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7"
  3573. },
  3574. "dist": {
  3575. "type": "zip",
  3576. "url": "https://api.github.com/repos/filp/whoops/zipball/bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  3577. "reference": "bc0fd11bc455cc20ee4b5edabc63ebbf859324c7",
  3578. "shasum": "",
  3579. "mirrors": [
  3580. {
  3581. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3582. "preferred": true
  3583. }
  3584. ]
  3585. },
  3586. "require": {
  3587. "php": "^5.5.9 || ^7.0",
  3588. "psr/log": "^1.0.1"
  3589. },
  3590. "require-dev": {
  3591. "mockery/mockery": "^0.9 || ^1.0",
  3592. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3593. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0"
  3594. },
  3595. "suggest": {
  3596. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  3597. "whoops/soap": "Formats errors as SOAP responses"
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "branch-alias": {
  3602. "dev-master": "2.2-dev"
  3603. }
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Whoops\\": "src/Whoops/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Filipe Dobreira",
  3617. "homepage": "https://github.com/filp",
  3618. "role": "Developer"
  3619. }
  3620. ],
  3621. "description": "php error handling for cool kids",
  3622. "homepage": "https://filp.github.io/whoops/",
  3623. "keywords": [
  3624. "error",
  3625. "exception",
  3626. "handling",
  3627. "library",
  3628. "throwable",
  3629. "whoops"
  3630. ],
  3631. "time": "2018-10-23T09:00:00+00:00"
  3632. },
  3633. {
  3634. "name": "fzaninotto/faker",
  3635. "version": "v1.8.0",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://github.com/fzaninotto/Faker.git",
  3639. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de",
  3644. "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de",
  3645. "shasum": "",
  3646. "mirrors": [
  3647. {
  3648. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3649. "preferred": true
  3650. }
  3651. ]
  3652. },
  3653. "require": {
  3654. "php": "^5.3.3 || ^7.0"
  3655. },
  3656. "require-dev": {
  3657. "ext-intl": "*",
  3658. "phpunit/phpunit": "^4.8.35 || ^5.7",
  3659. "squizlabs/php_codesniffer": "^1.5"
  3660. },
  3661. "type": "library",
  3662. "extra": {
  3663. "branch-alias": {
  3664. "dev-master": "1.8-dev"
  3665. }
  3666. },
  3667. "autoload": {
  3668. "psr-4": {
  3669. "Faker\\": "src/Faker/"
  3670. }
  3671. },
  3672. "notification-url": "https://packagist.org/downloads/",
  3673. "license": [
  3674. "MIT"
  3675. ],
  3676. "authors": [
  3677. {
  3678. "name": "François Zaninotto"
  3679. }
  3680. ],
  3681. "description": "Faker is a PHP library that generates fake data for you.",
  3682. "keywords": [
  3683. "data",
  3684. "faker",
  3685. "fixtures"
  3686. ],
  3687. "time": "2018-07-12T10:23:15+00:00"
  3688. },
  3689. {
  3690. "name": "hamcrest/hamcrest-php",
  3691. "version": "v2.0.0",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/hamcrest/hamcrest-php.git",
  3695. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3700. "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad",
  3701. "shasum": "",
  3702. "mirrors": [
  3703. {
  3704. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3705. "preferred": true
  3706. }
  3707. ]
  3708. },
  3709. "require": {
  3710. "php": "^5.3|^7.0"
  3711. },
  3712. "replace": {
  3713. "cordoval/hamcrest-php": "*",
  3714. "davedevelopment/hamcrest-php": "*",
  3715. "kodova/hamcrest-php": "*"
  3716. },
  3717. "require-dev": {
  3718. "phpunit/php-file-iterator": "1.3.3",
  3719. "phpunit/phpunit": "~4.0",
  3720. "satooshi/php-coveralls": "^1.0"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-master": "2.0-dev"
  3726. }
  3727. },
  3728. "autoload": {
  3729. "classmap": [
  3730. "hamcrest"
  3731. ]
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "BSD"
  3736. ],
  3737. "description": "This is the PHP port of Hamcrest Matchers",
  3738. "keywords": [
  3739. "test"
  3740. ],
  3741. "time": "2016-01-20T08:20:44+00:00"
  3742. },
  3743. {
  3744. "name": "mockery/mockery",
  3745. "version": "1.2.2",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/mockery/mockery.git",
  3749. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/mockery/mockery/zipball/0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  3754. "reference": "0eb0b48c3f07b3b89f5169ce005b7d05b18cf1d2",
  3755. "shasum": "",
  3756. "mirrors": [
  3757. {
  3758. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3759. "preferred": true
  3760. }
  3761. ]
  3762. },
  3763. "require": {
  3764. "hamcrest/hamcrest-php": "~2.0",
  3765. "lib-pcre": ">=7.0",
  3766. "php": ">=5.6.0"
  3767. },
  3768. "require-dev": {
  3769. "phpunit/phpunit": "~5.7.10|~6.5|~7.0|~8.0"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "1.0.x-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-0": {
  3779. "Mockery": "library/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "BSD-3-Clause"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Pádraic Brady",
  3789. "email": "padraic.brady@gmail.com",
  3790. "homepage": "http://blog.astrumfutura.com"
  3791. },
  3792. {
  3793. "name": "Dave Marshall",
  3794. "email": "dave.marshall@atstsolutions.co.uk",
  3795. "homepage": "http://davedevelopment.co.uk"
  3796. }
  3797. ],
  3798. "description": "Mockery is a simple yet flexible PHP mock object framework",
  3799. "homepage": "https://github.com/mockery/mockery",
  3800. "keywords": [
  3801. "BDD",
  3802. "TDD",
  3803. "library",
  3804. "mock",
  3805. "mock objects",
  3806. "mockery",
  3807. "stub",
  3808. "test",
  3809. "test double",
  3810. "testing"
  3811. ],
  3812. "time": "2019-02-13T09:37:52+00:00"
  3813. },
  3814. {
  3815. "name": "myclabs/deep-copy",
  3816. "version": "1.8.1",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://github.com/myclabs/DeepCopy.git",
  3820. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  3825. "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
  3826. "shasum": "",
  3827. "mirrors": [
  3828. {
  3829. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3830. "preferred": true
  3831. }
  3832. ]
  3833. },
  3834. "require": {
  3835. "php": "^7.1"
  3836. },
  3837. "replace": {
  3838. "myclabs/deep-copy": "self.version"
  3839. },
  3840. "require-dev": {
  3841. "doctrine/collections": "^1.0",
  3842. "doctrine/common": "^2.6",
  3843. "phpunit/phpunit": "^7.1"
  3844. },
  3845. "type": "library",
  3846. "autoload": {
  3847. "psr-4": {
  3848. "DeepCopy\\": "src/DeepCopy/"
  3849. },
  3850. "files": [
  3851. "src/DeepCopy/deep_copy.php"
  3852. ]
  3853. },
  3854. "notification-url": "https://packagist.org/downloads/",
  3855. "license": [
  3856. "MIT"
  3857. ],
  3858. "description": "Create deep copies (clones) of your objects",
  3859. "keywords": [
  3860. "clone",
  3861. "copy",
  3862. "duplicate",
  3863. "object",
  3864. "object graph"
  3865. ],
  3866. "time": "2018-06-11T23:09:50+00:00"
  3867. },
  3868. {
  3869. "name": "nunomaduro/collision",
  3870. "version": "v3.0.1",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/nunomaduro/collision.git",
  3874. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  3879. "reference": "af42d339fe2742295a54f6fdd42aaa6f8c4aca68",
  3880. "shasum": "",
  3881. "mirrors": [
  3882. {
  3883. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3884. "preferred": true
  3885. }
  3886. ]
  3887. },
  3888. "require": {
  3889. "filp/whoops": "^2.1.4",
  3890. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  3891. "php": "^7.1",
  3892. "symfony/console": "~2.8|~3.3|~4.0"
  3893. },
  3894. "require-dev": {
  3895. "laravel/framework": "5.8.*",
  3896. "nunomaduro/larastan": "^0.3.0",
  3897. "phpstan/phpstan": "^0.11",
  3898. "phpunit/phpunit": "~8.0"
  3899. },
  3900. "type": "library",
  3901. "extra": {
  3902. "laravel": {
  3903. "providers": [
  3904. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  3905. ]
  3906. }
  3907. },
  3908. "autoload": {
  3909. "psr-4": {
  3910. "NunoMaduro\\Collision\\": "src/"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Nuno Maduro",
  3920. "email": "enunomaduro@gmail.com"
  3921. }
  3922. ],
  3923. "description": "Cli error handling for console/command-line PHP applications.",
  3924. "keywords": [
  3925. "artisan",
  3926. "cli",
  3927. "command-line",
  3928. "console",
  3929. "error",
  3930. "handling",
  3931. "laravel",
  3932. "laravel-zero",
  3933. "php",
  3934. "symfony"
  3935. ],
  3936. "time": "2019-03-07T21:35:13+00:00"
  3937. },
  3938. {
  3939. "name": "phar-io/manifest",
  3940. "version": "1.0.3",
  3941. "source": {
  3942. "type": "git",
  3943. "url": "https://github.com/phar-io/manifest.git",
  3944. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  3945. },
  3946. "dist": {
  3947. "type": "zip",
  3948. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3949. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  3950. "shasum": "",
  3951. "mirrors": [
  3952. {
  3953. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  3954. "preferred": true
  3955. }
  3956. ]
  3957. },
  3958. "require": {
  3959. "ext-dom": "*",
  3960. "ext-phar": "*",
  3961. "phar-io/version": "^2.0",
  3962. "php": "^5.6 || ^7.0"
  3963. },
  3964. "type": "library",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-master": "1.0.x-dev"
  3968. }
  3969. },
  3970. "autoload": {
  3971. "classmap": [
  3972. "src/"
  3973. ]
  3974. },
  3975. "notification-url": "https://packagist.org/downloads/",
  3976. "license": [
  3977. "BSD-3-Clause"
  3978. ],
  3979. "authors": [
  3980. {
  3981. "name": "Arne Blankerts",
  3982. "email": "arne@blankerts.de",
  3983. "role": "Developer"
  3984. },
  3985. {
  3986. "name": "Sebastian Heuer",
  3987. "email": "sebastian@phpeople.de",
  3988. "role": "Developer"
  3989. },
  3990. {
  3991. "name": "Sebastian Bergmann",
  3992. "email": "sebastian@phpunit.de",
  3993. "role": "Developer"
  3994. }
  3995. ],
  3996. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  3997. "time": "2018-07-08T19:23:20+00:00"
  3998. },
  3999. {
  4000. "name": "phar-io/version",
  4001. "version": "2.0.1",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/phar-io/version.git",
  4005. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4010. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4011. "shasum": "",
  4012. "mirrors": [
  4013. {
  4014. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4015. "preferred": true
  4016. }
  4017. ]
  4018. },
  4019. "require": {
  4020. "php": "^5.6 || ^7.0"
  4021. },
  4022. "type": "library",
  4023. "autoload": {
  4024. "classmap": [
  4025. "src/"
  4026. ]
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "BSD-3-Clause"
  4031. ],
  4032. "authors": [
  4033. {
  4034. "name": "Arne Blankerts",
  4035. "email": "arne@blankerts.de",
  4036. "role": "Developer"
  4037. },
  4038. {
  4039. "name": "Sebastian Heuer",
  4040. "email": "sebastian@phpeople.de",
  4041. "role": "Developer"
  4042. },
  4043. {
  4044. "name": "Sebastian Bergmann",
  4045. "email": "sebastian@phpunit.de",
  4046. "role": "Developer"
  4047. }
  4048. ],
  4049. "description": "Library for handling version information and constraints",
  4050. "time": "2018-07-08T19:19:57+00:00"
  4051. },
  4052. {
  4053. "name": "phpdocumentor/reflection-common",
  4054. "version": "1.0.1",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4058. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4063. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  4064. "shasum": "",
  4065. "mirrors": [
  4066. {
  4067. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4068. "preferred": true
  4069. }
  4070. ]
  4071. },
  4072. "require": {
  4073. "php": ">=5.5"
  4074. },
  4075. "require-dev": {
  4076. "phpunit/phpunit": "^4.6"
  4077. },
  4078. "type": "library",
  4079. "extra": {
  4080. "branch-alias": {
  4081. "dev-master": "1.0.x-dev"
  4082. }
  4083. },
  4084. "autoload": {
  4085. "psr-4": {
  4086. "phpDocumentor\\Reflection\\": [
  4087. "src"
  4088. ]
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Jaap van Otterdijk",
  4098. "email": "opensource@ijaap.nl"
  4099. }
  4100. ],
  4101. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4102. "homepage": "http://www.phpdoc.org",
  4103. "keywords": [
  4104. "FQSEN",
  4105. "phpDocumentor",
  4106. "phpdoc",
  4107. "reflection",
  4108. "static analysis"
  4109. ],
  4110. "time": "2017-09-11T18:02:19+00:00"
  4111. },
  4112. {
  4113. "name": "phpdocumentor/reflection-docblock",
  4114. "version": "4.3.0",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4118. "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
  4123. "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
  4124. "shasum": "",
  4125. "mirrors": [
  4126. {
  4127. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4128. "preferred": true
  4129. }
  4130. ]
  4131. },
  4132. "require": {
  4133. "php": "^7.0",
  4134. "phpdocumentor/reflection-common": "^1.0.0",
  4135. "phpdocumentor/type-resolver": "^0.4.0",
  4136. "webmozart/assert": "^1.0"
  4137. },
  4138. "require-dev": {
  4139. "doctrine/instantiator": "~1.0.5",
  4140. "mockery/mockery": "^1.0",
  4141. "phpunit/phpunit": "^6.4"
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-master": "4.x-dev"
  4147. }
  4148. },
  4149. "autoload": {
  4150. "psr-4": {
  4151. "phpDocumentor\\Reflection\\": [
  4152. "src/"
  4153. ]
  4154. }
  4155. },
  4156. "notification-url": "https://packagist.org/downloads/",
  4157. "license": [
  4158. "MIT"
  4159. ],
  4160. "authors": [
  4161. {
  4162. "name": "Mike van Riel",
  4163. "email": "me@mikevanriel.com"
  4164. }
  4165. ],
  4166. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4167. "time": "2017-11-30T07:14:17+00:00"
  4168. },
  4169. {
  4170. "name": "phpdocumentor/type-resolver",
  4171. "version": "0.4.0",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4175. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
  4180. "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
  4181. "shasum": "",
  4182. "mirrors": [
  4183. {
  4184. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4185. "preferred": true
  4186. }
  4187. ]
  4188. },
  4189. "require": {
  4190. "php": "^5.5 || ^7.0",
  4191. "phpdocumentor/reflection-common": "^1.0"
  4192. },
  4193. "require-dev": {
  4194. "mockery/mockery": "^0.9.4",
  4195. "phpunit/phpunit": "^5.2||^4.8.24"
  4196. },
  4197. "type": "library",
  4198. "extra": {
  4199. "branch-alias": {
  4200. "dev-master": "1.0.x-dev"
  4201. }
  4202. },
  4203. "autoload": {
  4204. "psr-4": {
  4205. "phpDocumentor\\Reflection\\": [
  4206. "src/"
  4207. ]
  4208. }
  4209. },
  4210. "notification-url": "https://packagist.org/downloads/",
  4211. "license": [
  4212. "MIT"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Mike van Riel",
  4217. "email": "me@mikevanriel.com"
  4218. }
  4219. ],
  4220. "time": "2017-07-14T14:27:02+00:00"
  4221. },
  4222. {
  4223. "name": "phpspec/prophecy",
  4224. "version": "1.8.0",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/phpspec/prophecy.git",
  4228. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  4233. "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
  4234. "shasum": "",
  4235. "mirrors": [
  4236. {
  4237. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4238. "preferred": true
  4239. }
  4240. ]
  4241. },
  4242. "require": {
  4243. "doctrine/instantiator": "^1.0.2",
  4244. "php": "^5.3|^7.0",
  4245. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
  4246. "sebastian/comparator": "^1.1|^2.0|^3.0",
  4247. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  4248. },
  4249. "require-dev": {
  4250. "phpspec/phpspec": "^2.5|^3.2",
  4251. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  4252. },
  4253. "type": "library",
  4254. "extra": {
  4255. "branch-alias": {
  4256. "dev-master": "1.8.x-dev"
  4257. }
  4258. },
  4259. "autoload": {
  4260. "psr-0": {
  4261. "Prophecy\\": "src/"
  4262. }
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "Konstantin Kudryashov",
  4271. "email": "ever.zet@gmail.com",
  4272. "homepage": "http://everzet.com"
  4273. },
  4274. {
  4275. "name": "Marcello Duarte",
  4276. "email": "marcello.duarte@gmail.com"
  4277. }
  4278. ],
  4279. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4280. "homepage": "https://github.com/phpspec/prophecy",
  4281. "keywords": [
  4282. "Double",
  4283. "Dummy",
  4284. "fake",
  4285. "mock",
  4286. "spy",
  4287. "stub"
  4288. ],
  4289. "time": "2018-08-05T17:53:17+00:00"
  4290. },
  4291. {
  4292. "name": "phpunit/php-code-coverage",
  4293. "version": "6.1.4",
  4294. "source": {
  4295. "type": "git",
  4296. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4297. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  4298. },
  4299. "dist": {
  4300. "type": "zip",
  4301. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4302. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4303. "shasum": "",
  4304. "mirrors": [
  4305. {
  4306. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4307. "preferred": true
  4308. }
  4309. ]
  4310. },
  4311. "require": {
  4312. "ext-dom": "*",
  4313. "ext-xmlwriter": "*",
  4314. "php": "^7.1",
  4315. "phpunit/php-file-iterator": "^2.0",
  4316. "phpunit/php-text-template": "^1.2.1",
  4317. "phpunit/php-token-stream": "^3.0",
  4318. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4319. "sebastian/environment": "^3.1 || ^4.0",
  4320. "sebastian/version": "^2.0.1",
  4321. "theseer/tokenizer": "^1.1"
  4322. },
  4323. "require-dev": {
  4324. "phpunit/phpunit": "^7.0"
  4325. },
  4326. "suggest": {
  4327. "ext-xdebug": "^2.6.0"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "6.1-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "classmap": [
  4337. "src/"
  4338. ]
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "BSD-3-Clause"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Sebastian Bergmann",
  4347. "email": "sebastian@phpunit.de",
  4348. "role": "lead"
  4349. }
  4350. ],
  4351. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4352. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4353. "keywords": [
  4354. "coverage",
  4355. "testing",
  4356. "xunit"
  4357. ],
  4358. "time": "2018-10-31T16:06:48+00:00"
  4359. },
  4360. {
  4361. "name": "phpunit/php-file-iterator",
  4362. "version": "2.0.2",
  4363. "source": {
  4364. "type": "git",
  4365. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4366. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  4367. },
  4368. "dist": {
  4369. "type": "zip",
  4370. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  4371. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  4372. "shasum": "",
  4373. "mirrors": [
  4374. {
  4375. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4376. "preferred": true
  4377. }
  4378. ]
  4379. },
  4380. "require": {
  4381. "php": "^7.1"
  4382. },
  4383. "require-dev": {
  4384. "phpunit/phpunit": "^7.1"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "2.0.x-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "classmap": [
  4394. "src/"
  4395. ]
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "BSD-3-Clause"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "Sebastian Bergmann",
  4404. "email": "sebastian@phpunit.de",
  4405. "role": "lead"
  4406. }
  4407. ],
  4408. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4409. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4410. "keywords": [
  4411. "filesystem",
  4412. "iterator"
  4413. ],
  4414. "time": "2018-09-13T20:33:42+00:00"
  4415. },
  4416. {
  4417. "name": "phpunit/php-text-template",
  4418. "version": "1.2.1",
  4419. "source": {
  4420. "type": "git",
  4421. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4422. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4423. },
  4424. "dist": {
  4425. "type": "zip",
  4426. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4427. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4428. "shasum": "",
  4429. "mirrors": [
  4430. {
  4431. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4432. "preferred": true
  4433. }
  4434. ]
  4435. },
  4436. "require": {
  4437. "php": ">=5.3.3"
  4438. },
  4439. "type": "library",
  4440. "autoload": {
  4441. "classmap": [
  4442. "src/"
  4443. ]
  4444. },
  4445. "notification-url": "https://packagist.org/downloads/",
  4446. "license": [
  4447. "BSD-3-Clause"
  4448. ],
  4449. "authors": [
  4450. {
  4451. "name": "Sebastian Bergmann",
  4452. "email": "sebastian@phpunit.de",
  4453. "role": "lead"
  4454. }
  4455. ],
  4456. "description": "Simple template engine.",
  4457. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4458. "keywords": [
  4459. "template"
  4460. ],
  4461. "time": "2015-06-21T13:50:34+00:00"
  4462. },
  4463. {
  4464. "name": "phpunit/php-timer",
  4465. "version": "2.1.1",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4469. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059",
  4474. "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "php": "^7.1"
  4485. },
  4486. "require-dev": {
  4487. "phpunit/phpunit": "^7.0"
  4488. },
  4489. "type": "library",
  4490. "extra": {
  4491. "branch-alias": {
  4492. "dev-master": "2.1-dev"
  4493. }
  4494. },
  4495. "autoload": {
  4496. "classmap": [
  4497. "src/"
  4498. ]
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "BSD-3-Clause"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "Sebastian Bergmann",
  4507. "email": "sebastian@phpunit.de",
  4508. "role": "lead"
  4509. }
  4510. ],
  4511. "description": "Utility class for timing",
  4512. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4513. "keywords": [
  4514. "timer"
  4515. ],
  4516. "time": "2019-02-20T10:12:59+00:00"
  4517. },
  4518. {
  4519. "name": "phpunit/php-token-stream",
  4520. "version": "3.0.1",
  4521. "source": {
  4522. "type": "git",
  4523. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4524. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18"
  4525. },
  4526. "dist": {
  4527. "type": "zip",
  4528. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4529. "reference": "c99e3be9d3e85f60646f152f9002d46ed7770d18",
  4530. "shasum": "",
  4531. "mirrors": [
  4532. {
  4533. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4534. "preferred": true
  4535. }
  4536. ]
  4537. },
  4538. "require": {
  4539. "ext-tokenizer": "*",
  4540. "php": "^7.1"
  4541. },
  4542. "require-dev": {
  4543. "phpunit/phpunit": "^7.0"
  4544. },
  4545. "type": "library",
  4546. "extra": {
  4547. "branch-alias": {
  4548. "dev-master": "3.0-dev"
  4549. }
  4550. },
  4551. "autoload": {
  4552. "classmap": [
  4553. "src/"
  4554. ]
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "BSD-3-Clause"
  4559. ],
  4560. "authors": [
  4561. {
  4562. "name": "Sebastian Bergmann",
  4563. "email": "sebastian@phpunit.de"
  4564. }
  4565. ],
  4566. "description": "Wrapper around PHP's tokenizer extension.",
  4567. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4568. "keywords": [
  4569. "tokenizer"
  4570. ],
  4571. "time": "2018-10-30T05:52:18+00:00"
  4572. },
  4573. {
  4574. "name": "phpunit/phpunit",
  4575. "version": "7.5.7",
  4576. "source": {
  4577. "type": "git",
  4578. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4579. "reference": "eb343b86753d26de07ecba7868fa983104361948"
  4580. },
  4581. "dist": {
  4582. "type": "zip",
  4583. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/eb343b86753d26de07ecba7868fa983104361948",
  4584. "reference": "eb343b86753d26de07ecba7868fa983104361948",
  4585. "shasum": "",
  4586. "mirrors": [
  4587. {
  4588. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4589. "preferred": true
  4590. }
  4591. ]
  4592. },
  4593. "require": {
  4594. "doctrine/instantiator": "^1.1",
  4595. "ext-dom": "*",
  4596. "ext-json": "*",
  4597. "ext-libxml": "*",
  4598. "ext-mbstring": "*",
  4599. "ext-xml": "*",
  4600. "myclabs/deep-copy": "^1.7",
  4601. "phar-io/manifest": "^1.0.2",
  4602. "phar-io/version": "^2.0",
  4603. "php": "^7.1",
  4604. "phpspec/prophecy": "^1.7",
  4605. "phpunit/php-code-coverage": "^6.0.7",
  4606. "phpunit/php-file-iterator": "^2.0.1",
  4607. "phpunit/php-text-template": "^1.2.1",
  4608. "phpunit/php-timer": "^2.1",
  4609. "sebastian/comparator": "^3.0",
  4610. "sebastian/diff": "^3.0",
  4611. "sebastian/environment": "^4.0",
  4612. "sebastian/exporter": "^3.1",
  4613. "sebastian/global-state": "^2.0",
  4614. "sebastian/object-enumerator": "^3.0.3",
  4615. "sebastian/resource-operations": "^2.0",
  4616. "sebastian/version": "^2.0.1"
  4617. },
  4618. "conflict": {
  4619. "phpunit/phpunit-mock-objects": "*"
  4620. },
  4621. "require-dev": {
  4622. "ext-pdo": "*"
  4623. },
  4624. "suggest": {
  4625. "ext-soap": "*",
  4626. "ext-xdebug": "*",
  4627. "phpunit/php-invoker": "^2.0"
  4628. },
  4629. "bin": [
  4630. "phpunit"
  4631. ],
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "7.5-dev"
  4636. }
  4637. },
  4638. "autoload": {
  4639. "classmap": [
  4640. "src/"
  4641. ]
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "BSD-3-Clause"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "Sebastian Bergmann",
  4650. "email": "sebastian@phpunit.de",
  4651. "role": "lead"
  4652. }
  4653. ],
  4654. "description": "The PHP Unit Testing framework.",
  4655. "homepage": "https://phpunit.de/",
  4656. "keywords": [
  4657. "phpunit",
  4658. "testing",
  4659. "xunit"
  4660. ],
  4661. "time": "2019-03-16T07:31:17+00:00"
  4662. },
  4663. {
  4664. "name": "sebastian/code-unit-reverse-lookup",
  4665. "version": "1.0.1",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4669. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4674. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  4675. "shasum": "",
  4676. "mirrors": [
  4677. {
  4678. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4679. "preferred": true
  4680. }
  4681. ]
  4682. },
  4683. "require": {
  4684. "php": "^5.6 || ^7.0"
  4685. },
  4686. "require-dev": {
  4687. "phpunit/phpunit": "^5.7 || ^6.0"
  4688. },
  4689. "type": "library",
  4690. "extra": {
  4691. "branch-alias": {
  4692. "dev-master": "1.0.x-dev"
  4693. }
  4694. },
  4695. "autoload": {
  4696. "classmap": [
  4697. "src/"
  4698. ]
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "BSD-3-Clause"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Sebastian Bergmann",
  4707. "email": "sebastian@phpunit.de"
  4708. }
  4709. ],
  4710. "description": "Looks up which function or method a line of code belongs to",
  4711. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4712. "time": "2017-03-04T06:30:41+00:00"
  4713. },
  4714. {
  4715. "name": "sebastian/comparator",
  4716. "version": "3.0.2",
  4717. "source": {
  4718. "type": "git",
  4719. "url": "https://github.com/sebastianbergmann/comparator.git",
  4720. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  4721. },
  4722. "dist": {
  4723. "type": "zip",
  4724. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4725. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  4726. "shasum": "",
  4727. "mirrors": [
  4728. {
  4729. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4730. "preferred": true
  4731. }
  4732. ]
  4733. },
  4734. "require": {
  4735. "php": "^7.1",
  4736. "sebastian/diff": "^3.0",
  4737. "sebastian/exporter": "^3.1"
  4738. },
  4739. "require-dev": {
  4740. "phpunit/phpunit": "^7.1"
  4741. },
  4742. "type": "library",
  4743. "extra": {
  4744. "branch-alias": {
  4745. "dev-master": "3.0-dev"
  4746. }
  4747. },
  4748. "autoload": {
  4749. "classmap": [
  4750. "src/"
  4751. ]
  4752. },
  4753. "notification-url": "https://packagist.org/downloads/",
  4754. "license": [
  4755. "BSD-3-Clause"
  4756. ],
  4757. "authors": [
  4758. {
  4759. "name": "Jeff Welch",
  4760. "email": "whatthejeff@gmail.com"
  4761. },
  4762. {
  4763. "name": "Volker Dusch",
  4764. "email": "github@wallbash.com"
  4765. },
  4766. {
  4767. "name": "Bernhard Schussek",
  4768. "email": "bschussek@2bepublished.at"
  4769. },
  4770. {
  4771. "name": "Sebastian Bergmann",
  4772. "email": "sebastian@phpunit.de"
  4773. }
  4774. ],
  4775. "description": "Provides the functionality to compare PHP values for equality",
  4776. "homepage": "https://github.com/sebastianbergmann/comparator",
  4777. "keywords": [
  4778. "comparator",
  4779. "compare",
  4780. "equality"
  4781. ],
  4782. "time": "2018-07-12T15:12:46+00:00"
  4783. },
  4784. {
  4785. "name": "sebastian/diff",
  4786. "version": "3.0.2",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/sebastianbergmann/diff.git",
  4790. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4795. "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29",
  4796. "shasum": "",
  4797. "mirrors": [
  4798. {
  4799. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4800. "preferred": true
  4801. }
  4802. ]
  4803. },
  4804. "require": {
  4805. "php": "^7.1"
  4806. },
  4807. "require-dev": {
  4808. "phpunit/phpunit": "^7.5 || ^8.0",
  4809. "symfony/process": "^2 || ^3.3 || ^4"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "3.0-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "classmap": [
  4819. "src/"
  4820. ]
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "BSD-3-Clause"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "Kore Nordmann",
  4829. "email": "mail@kore-nordmann.de"
  4830. },
  4831. {
  4832. "name": "Sebastian Bergmann",
  4833. "email": "sebastian@phpunit.de"
  4834. }
  4835. ],
  4836. "description": "Diff implementation",
  4837. "homepage": "https://github.com/sebastianbergmann/diff",
  4838. "keywords": [
  4839. "diff",
  4840. "udiff",
  4841. "unidiff",
  4842. "unified diff"
  4843. ],
  4844. "time": "2019-02-04T06:01:07+00:00"
  4845. },
  4846. {
  4847. "name": "sebastian/environment",
  4848. "version": "4.1.0",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/sebastianbergmann/environment.git",
  4852. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6fda8ce1974b62b14935adc02a9ed38252eca656",
  4857. "reference": "6fda8ce1974b62b14935adc02a9ed38252eca656",
  4858. "shasum": "",
  4859. "mirrors": [
  4860. {
  4861. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4862. "preferred": true
  4863. }
  4864. ]
  4865. },
  4866. "require": {
  4867. "php": "^7.1"
  4868. },
  4869. "require-dev": {
  4870. "phpunit/phpunit": "^7.5"
  4871. },
  4872. "suggest": {
  4873. "ext-posix": "*"
  4874. },
  4875. "type": "library",
  4876. "extra": {
  4877. "branch-alias": {
  4878. "dev-master": "4.1-dev"
  4879. }
  4880. },
  4881. "autoload": {
  4882. "classmap": [
  4883. "src/"
  4884. ]
  4885. },
  4886. "notification-url": "https://packagist.org/downloads/",
  4887. "license": [
  4888. "BSD-3-Clause"
  4889. ],
  4890. "authors": [
  4891. {
  4892. "name": "Sebastian Bergmann",
  4893. "email": "sebastian@phpunit.de"
  4894. }
  4895. ],
  4896. "description": "Provides functionality to handle HHVM/PHP environments",
  4897. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4898. "keywords": [
  4899. "Xdebug",
  4900. "environment",
  4901. "hhvm"
  4902. ],
  4903. "time": "2019-02-01T05:27:49+00:00"
  4904. },
  4905. {
  4906. "name": "sebastian/exporter",
  4907. "version": "3.1.0",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/sebastianbergmann/exporter.git",
  4911. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
  4916. "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
  4917. "shasum": "",
  4918. "mirrors": [
  4919. {
  4920. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4921. "preferred": true
  4922. }
  4923. ]
  4924. },
  4925. "require": {
  4926. "php": "^7.0",
  4927. "sebastian/recursion-context": "^3.0"
  4928. },
  4929. "require-dev": {
  4930. "ext-mbstring": "*",
  4931. "phpunit/phpunit": "^6.0"
  4932. },
  4933. "type": "library",
  4934. "extra": {
  4935. "branch-alias": {
  4936. "dev-master": "3.1.x-dev"
  4937. }
  4938. },
  4939. "autoload": {
  4940. "classmap": [
  4941. "src/"
  4942. ]
  4943. },
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "BSD-3-Clause"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Jeff Welch",
  4951. "email": "whatthejeff@gmail.com"
  4952. },
  4953. {
  4954. "name": "Volker Dusch",
  4955. "email": "github@wallbash.com"
  4956. },
  4957. {
  4958. "name": "Bernhard Schussek",
  4959. "email": "bschussek@2bepublished.at"
  4960. },
  4961. {
  4962. "name": "Sebastian Bergmann",
  4963. "email": "sebastian@phpunit.de"
  4964. },
  4965. {
  4966. "name": "Adam Harvey",
  4967. "email": "aharvey@php.net"
  4968. }
  4969. ],
  4970. "description": "Provides the functionality to export PHP variables for visualization",
  4971. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  4972. "keywords": [
  4973. "export",
  4974. "exporter"
  4975. ],
  4976. "time": "2017-04-03T13:19:02+00:00"
  4977. },
  4978. {
  4979. "name": "sebastian/global-state",
  4980. "version": "2.0.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/sebastianbergmann/global-state.git",
  4984. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4989. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  4990. "shasum": "",
  4991. "mirrors": [
  4992. {
  4993. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  4994. "preferred": true
  4995. }
  4996. ]
  4997. },
  4998. "require": {
  4999. "php": "^7.0"
  5000. },
  5001. "require-dev": {
  5002. "phpunit/phpunit": "^6.0"
  5003. },
  5004. "suggest": {
  5005. "ext-uopz": "*"
  5006. },
  5007. "type": "library",
  5008. "extra": {
  5009. "branch-alias": {
  5010. "dev-master": "2.0-dev"
  5011. }
  5012. },
  5013. "autoload": {
  5014. "classmap": [
  5015. "src/"
  5016. ]
  5017. },
  5018. "notification-url": "https://packagist.org/downloads/",
  5019. "license": [
  5020. "BSD-3-Clause"
  5021. ],
  5022. "authors": [
  5023. {
  5024. "name": "Sebastian Bergmann",
  5025. "email": "sebastian@phpunit.de"
  5026. }
  5027. ],
  5028. "description": "Snapshotting of global state",
  5029. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5030. "keywords": [
  5031. "global state"
  5032. ],
  5033. "time": "2017-04-27T15:39:26+00:00"
  5034. },
  5035. {
  5036. "name": "sebastian/object-enumerator",
  5037. "version": "3.0.3",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5041. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5046. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  5047. "shasum": "",
  5048. "mirrors": [
  5049. {
  5050. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5051. "preferred": true
  5052. }
  5053. ]
  5054. },
  5055. "require": {
  5056. "php": "^7.0",
  5057. "sebastian/object-reflector": "^1.1.1",
  5058. "sebastian/recursion-context": "^3.0"
  5059. },
  5060. "require-dev": {
  5061. "phpunit/phpunit": "^6.0"
  5062. },
  5063. "type": "library",
  5064. "extra": {
  5065. "branch-alias": {
  5066. "dev-master": "3.0.x-dev"
  5067. }
  5068. },
  5069. "autoload": {
  5070. "classmap": [
  5071. "src/"
  5072. ]
  5073. },
  5074. "notification-url": "https://packagist.org/downloads/",
  5075. "license": [
  5076. "BSD-3-Clause"
  5077. ],
  5078. "authors": [
  5079. {
  5080. "name": "Sebastian Bergmann",
  5081. "email": "sebastian@phpunit.de"
  5082. }
  5083. ],
  5084. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5085. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5086. "time": "2017-08-03T12:35:26+00:00"
  5087. },
  5088. {
  5089. "name": "sebastian/object-reflector",
  5090. "version": "1.1.1",
  5091. "source": {
  5092. "type": "git",
  5093. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5094. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  5095. },
  5096. "dist": {
  5097. "type": "zip",
  5098. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  5099. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  5100. "shasum": "",
  5101. "mirrors": [
  5102. {
  5103. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5104. "preferred": true
  5105. }
  5106. ]
  5107. },
  5108. "require": {
  5109. "php": "^7.0"
  5110. },
  5111. "require-dev": {
  5112. "phpunit/phpunit": "^6.0"
  5113. },
  5114. "type": "library",
  5115. "extra": {
  5116. "branch-alias": {
  5117. "dev-master": "1.1-dev"
  5118. }
  5119. },
  5120. "autoload": {
  5121. "classmap": [
  5122. "src/"
  5123. ]
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "BSD-3-Clause"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "Sebastian Bergmann",
  5132. "email": "sebastian@phpunit.de"
  5133. }
  5134. ],
  5135. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5136. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5137. "time": "2017-03-29T09:07:27+00:00"
  5138. },
  5139. {
  5140. "name": "sebastian/recursion-context",
  5141. "version": "3.0.0",
  5142. "source": {
  5143. "type": "git",
  5144. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5145. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  5146. },
  5147. "dist": {
  5148. "type": "zip",
  5149. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5150. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  5151. "shasum": "",
  5152. "mirrors": [
  5153. {
  5154. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5155. "preferred": true
  5156. }
  5157. ]
  5158. },
  5159. "require": {
  5160. "php": "^7.0"
  5161. },
  5162. "require-dev": {
  5163. "phpunit/phpunit": "^6.0"
  5164. },
  5165. "type": "library",
  5166. "extra": {
  5167. "branch-alias": {
  5168. "dev-master": "3.0.x-dev"
  5169. }
  5170. },
  5171. "autoload": {
  5172. "classmap": [
  5173. "src/"
  5174. ]
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "BSD-3-Clause"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Jeff Welch",
  5183. "email": "whatthejeff@gmail.com"
  5184. },
  5185. {
  5186. "name": "Sebastian Bergmann",
  5187. "email": "sebastian@phpunit.de"
  5188. },
  5189. {
  5190. "name": "Adam Harvey",
  5191. "email": "aharvey@php.net"
  5192. }
  5193. ],
  5194. "description": "Provides functionality to recursively process PHP variables",
  5195. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5196. "time": "2017-03-03T06:23:57+00:00"
  5197. },
  5198. {
  5199. "name": "sebastian/resource-operations",
  5200. "version": "2.0.1",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5204. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5209. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  5210. "shasum": "",
  5211. "mirrors": [
  5212. {
  5213. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5214. "preferred": true
  5215. }
  5216. ]
  5217. },
  5218. "require": {
  5219. "php": "^7.1"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "branch-alias": {
  5224. "dev-master": "2.0-dev"
  5225. }
  5226. },
  5227. "autoload": {
  5228. "classmap": [
  5229. "src/"
  5230. ]
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "BSD-3-Clause"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Sebastian Bergmann",
  5239. "email": "sebastian@phpunit.de"
  5240. }
  5241. ],
  5242. "description": "Provides a list of PHP built-in functions that operate on resources",
  5243. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5244. "time": "2018-10-04T04:07:39+00:00"
  5245. },
  5246. {
  5247. "name": "sebastian/version",
  5248. "version": "2.0.1",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/sebastianbergmann/version.git",
  5252. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5257. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5258. "shasum": "",
  5259. "mirrors": [
  5260. {
  5261. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5262. "preferred": true
  5263. }
  5264. ]
  5265. },
  5266. "require": {
  5267. "php": ">=5.6"
  5268. },
  5269. "type": "library",
  5270. "extra": {
  5271. "branch-alias": {
  5272. "dev-master": "2.0.x-dev"
  5273. }
  5274. },
  5275. "autoload": {
  5276. "classmap": [
  5277. "src/"
  5278. ]
  5279. },
  5280. "notification-url": "https://packagist.org/downloads/",
  5281. "license": [
  5282. "BSD-3-Clause"
  5283. ],
  5284. "authors": [
  5285. {
  5286. "name": "Sebastian Bergmann",
  5287. "email": "sebastian@phpunit.de",
  5288. "role": "lead"
  5289. }
  5290. ],
  5291. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5292. "homepage": "https://github.com/sebastianbergmann/version",
  5293. "time": "2016-10-03T07:35:21+00:00"
  5294. },
  5295. {
  5296. "name": "theseer/tokenizer",
  5297. "version": "1.1.0",
  5298. "source": {
  5299. "type": "git",
  5300. "url": "https://github.com/theseer/tokenizer.git",
  5301. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
  5302. },
  5303. "dist": {
  5304. "type": "zip",
  5305. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  5306. "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
  5307. "shasum": "",
  5308. "mirrors": [
  5309. {
  5310. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5311. "preferred": true
  5312. }
  5313. ]
  5314. },
  5315. "require": {
  5316. "ext-dom": "*",
  5317. "ext-tokenizer": "*",
  5318. "ext-xmlwriter": "*",
  5319. "php": "^7.0"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "classmap": [
  5324. "src/"
  5325. ]
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "BSD-3-Clause"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Arne Blankerts",
  5334. "email": "arne@blankerts.de",
  5335. "role": "Developer"
  5336. }
  5337. ],
  5338. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  5339. "time": "2017-04-07T12:08:54+00:00"
  5340. },
  5341. {
  5342. "name": "webmozart/assert",
  5343. "version": "1.4.0",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/webmozart/assert.git",
  5347. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9",
  5352. "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9",
  5353. "shasum": "",
  5354. "mirrors": [
  5355. {
  5356. "url": "https://dl.laravel-china.org/%package%/%reference%.%type%",
  5357. "preferred": true
  5358. }
  5359. ]
  5360. },
  5361. "require": {
  5362. "php": "^5.3.3 || ^7.0",
  5363. "symfony/polyfill-ctype": "^1.8"
  5364. },
  5365. "require-dev": {
  5366. "phpunit/phpunit": "^4.6",
  5367. "sebastian/version": "^1.0.1"
  5368. },
  5369. "type": "library",
  5370. "extra": {
  5371. "branch-alias": {
  5372. "dev-master": "1.3-dev"
  5373. }
  5374. },
  5375. "autoload": {
  5376. "psr-4": {
  5377. "Webmozart\\Assert\\": "src/"
  5378. }
  5379. },
  5380. "notification-url": "https://packagist.org/downloads/",
  5381. "license": [
  5382. "MIT"
  5383. ],
  5384. "authors": [
  5385. {
  5386. "name": "Bernhard Schussek",
  5387. "email": "bschussek@gmail.com"
  5388. }
  5389. ],
  5390. "description": "Assertions to validate method input/output with nice error messages.",
  5391. "keywords": [
  5392. "assert",
  5393. "check",
  5394. "validate"
  5395. ],
  5396. "time": "2018-12-25T11:19:39+00:00"
  5397. }
  5398. ],
  5399. "aliases": [],
  5400. "minimum-stability": "dev",
  5401. "stability-flags": [],
  5402. "prefer-stable": true,
  5403. "prefer-lowest": false,
  5404. "platform": {
  5405. "php": "^7.1.3"
  5406. },
  5407. "platform-dev": []
  5408. }