composer.lock 198 KB

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