composer.lock 209 KB

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