新版订单消耗系统

composer.lock 208KB

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