composer.lock 195 KB

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