installed.json 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822
  1. [
  2. {
  3. "name": "classpreloader/classpreloader",
  4. "version": "3.0.0",
  5. "version_normalized": "3.0.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/ClassPreloader/ClassPreloader.git",
  9. "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://packagist.phpcomposer.com/files/ClassPreloader/ClassPreloader/9b10b913c2bdf90c3d2e0d726b454fb7f77c552a.zip",
  14. "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "nikic/php-parser": "^1.0|^2.0",
  19. "php": ">=5.5.9"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^4.8|^5.0"
  23. },
  24. "time": "2015-11-09 22:51:51",
  25. "type": "library",
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "3.0-dev"
  29. }
  30. },
  31. "installation-source": "dist",
  32. "autoload": {
  33. "psr-4": {
  34. "ClassPreloader\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "authors": [
  42. {
  43. "name": "Michael Dowling",
  44. "email": "mtdowling@gmail.com"
  45. },
  46. {
  47. "name": "Graham Campbell",
  48. "email": "graham@alt-three.com"
  49. }
  50. ],
  51. "description": "Helps class loading performance by generating a single PHP file containing all of the autoloaded files for a specific use case",
  52. "keywords": [
  53. "autoload",
  54. "class",
  55. "preload"
  56. ]
  57. },
  58. {
  59. "name": "doctrine/inflector",
  60. "version": "v1.1.0",
  61. "version_normalized": "1.1.0.0",
  62. "source": {
  63. "type": "git",
  64. "url": "https://github.com/doctrine/inflector.git",
  65. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
  66. },
  67. "dist": {
  68. "type": "zip",
  69. "url": "https://packagist.phpcomposer.com/files/doctrine/inflector/90b2128806bfde671b6952ab8bea493942c1fdae.zip",
  70. "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
  71. "shasum": ""
  72. },
  73. "require": {
  74. "php": ">=5.3.2"
  75. },
  76. "require-dev": {
  77. "phpunit/phpunit": "4.*"
  78. },
  79. "time": "2015-11-06 14:35:42",
  80. "type": "library",
  81. "extra": {
  82. "branch-alias": {
  83. "dev-master": "1.1.x-dev"
  84. }
  85. },
  86. "installation-source": "dist",
  87. "autoload": {
  88. "psr-0": {
  89. "Doctrine\\Common\\Inflector\\": "lib/"
  90. }
  91. },
  92. "notification-url": "https://packagist.org/downloads/",
  93. "license": [
  94. "MIT"
  95. ],
  96. "authors": [
  97. {
  98. "name": "Roman Borschel",
  99. "email": "roman@code-factory.org"
  100. },
  101. {
  102. "name": "Benjamin Eberlei",
  103. "email": "kontakt@beberlei.de"
  104. },
  105. {
  106. "name": "Guilherme Blanco",
  107. "email": "guilhermeblanco@gmail.com"
  108. },
  109. {
  110. "name": "Jonathan Wage",
  111. "email": "jonwage@gmail.com"
  112. },
  113. {
  114. "name": "Johannes Schmitt",
  115. "email": "schmittjoh@gmail.com"
  116. }
  117. ],
  118. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  119. "homepage": "http://www.doctrine-project.org",
  120. "keywords": [
  121. "inflection",
  122. "pluralize",
  123. "singularize",
  124. "string"
  125. ]
  126. },
  127. {
  128. "name": "jakub-onderka/php-console-color",
  129. "version": "0.1",
  130. "version_normalized": "0.1.0.0",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  134. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://packagist.phpcomposer.com/files/JakubOnderka/PHP-Console-Color/e0b393dacf7703fc36a4efc3df1435485197e6c1.zip",
  139. "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "php": ">=5.3.2"
  144. },
  145. "require-dev": {
  146. "jakub-onderka/php-code-style": "1.0",
  147. "jakub-onderka/php-parallel-lint": "0.*",
  148. "jakub-onderka/php-var-dump-check": "0.*",
  149. "phpunit/phpunit": "3.7.*",
  150. "squizlabs/php_codesniffer": "1.*"
  151. },
  152. "time": "2014-04-08 15:00:19",
  153. "type": "library",
  154. "installation-source": "dist",
  155. "autoload": {
  156. "psr-0": {
  157. "JakubOnderka\\PhpConsoleColor": "src/"
  158. }
  159. },
  160. "notification-url": "https://packagist.org/downloads/",
  161. "license": [
  162. "BSD-2-Clause"
  163. ],
  164. "authors": [
  165. {
  166. "name": "Jakub Onderka",
  167. "email": "jakub.onderka@gmail.com",
  168. "homepage": "http://www.acci.cz"
  169. }
  170. ]
  171. },
  172. {
  173. "name": "symfony/polyfill-util",
  174. "version": "v1.2.0",
  175. "version_normalized": "1.2.0.0",
  176. "source": {
  177. "type": "git",
  178. "url": "https://github.com/symfony/polyfill-util.git",
  179. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99"
  180. },
  181. "dist": {
  182. "type": "zip",
  183. "url": "https://packagist.phpcomposer.com/files/symfony/polyfill-util/ef830ce3d218e622b221d6bfad42c751d974bf99.zip",
  184. "reference": "ef830ce3d218e622b221d6bfad42c751d974bf99",
  185. "shasum": ""
  186. },
  187. "require": {
  188. "php": ">=5.3.3"
  189. },
  190. "time": "2016-05-18 14:26:46",
  191. "type": "library",
  192. "extra": {
  193. "branch-alias": {
  194. "dev-master": "1.2-dev"
  195. }
  196. },
  197. "installation-source": "dist",
  198. "autoload": {
  199. "psr-4": {
  200. "Symfony\\Polyfill\\Util\\": ""
  201. }
  202. },
  203. "notification-url": "https://packagist.org/downloads/",
  204. "license": [
  205. "MIT"
  206. ],
  207. "authors": [
  208. {
  209. "name": "Nicolas Grekas",
  210. "email": "p@tchwork.com"
  211. },
  212. {
  213. "name": "Symfony Community",
  214. "homepage": "https://symfony.com/contributors"
  215. }
  216. ],
  217. "description": "Symfony utilities for portability of PHP codes",
  218. "homepage": "https://symfony.com",
  219. "keywords": [
  220. "compat",
  221. "compatibility",
  222. "polyfill",
  223. "shim"
  224. ]
  225. },
  226. {
  227. "name": "symfony/polyfill-php56",
  228. "version": "v1.2.0",
  229. "version_normalized": "1.2.0.0",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/symfony/polyfill-php56.git",
  233. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://packagist.phpcomposer.com/files/symfony/polyfill-php56/3edf57a8fbf9a927533344cef65ad7e1cf31030a.zip",
  238. "reference": "3edf57a8fbf9a927533344cef65ad7e1cf31030a",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "php": ">=5.3.3",
  243. "symfony/polyfill-util": "~1.0"
  244. },
  245. "time": "2016-05-18 14:26:46",
  246. "type": "library",
  247. "extra": {
  248. "branch-alias": {
  249. "dev-master": "1.2-dev"
  250. }
  251. },
  252. "installation-source": "dist",
  253. "autoload": {
  254. "psr-4": {
  255. "Symfony\\Polyfill\\Php56\\": ""
  256. },
  257. "files": [
  258. "bootstrap.php"
  259. ]
  260. },
  261. "notification-url": "https://packagist.org/downloads/",
  262. "license": [
  263. "MIT"
  264. ],
  265. "authors": [
  266. {
  267. "name": "Nicolas Grekas",
  268. "email": "p@tchwork.com"
  269. },
  270. {
  271. "name": "Symfony Community",
  272. "homepage": "https://symfony.com/contributors"
  273. }
  274. ],
  275. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  276. "homepage": "https://symfony.com",
  277. "keywords": [
  278. "compatibility",
  279. "polyfill",
  280. "portable",
  281. "shim"
  282. ]
  283. },
  284. {
  285. "name": "jeremeamia/SuperClosure",
  286. "version": "2.2.0",
  287. "version_normalized": "2.2.0.0",
  288. "source": {
  289. "type": "git",
  290. "url": "https://github.com/jeremeamia/super_closure.git",
  291. "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938"
  292. },
  293. "dist": {
  294. "type": "zip",
  295. "url": "https://packagist.phpcomposer.com/files/jeremeamia/super_closure/29a88be2a4846d27c1613aed0c9071dfad7b5938.zip",
  296. "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938",
  297. "shasum": ""
  298. },
  299. "require": {
  300. "nikic/php-parser": "^1.2|^2.0",
  301. "php": ">=5.4",
  302. "symfony/polyfill-php56": "^1.0"
  303. },
  304. "require-dev": {
  305. "phpunit/phpunit": "^4.0|^5.0"
  306. },
  307. "time": "2015-12-05 17:17:57",
  308. "type": "library",
  309. "extra": {
  310. "branch-alias": {
  311. "dev-master": "2.2-dev"
  312. }
  313. },
  314. "installation-source": "dist",
  315. "autoload": {
  316. "psr-4": {
  317. "SuperClosure\\": "src/"
  318. }
  319. },
  320. "notification-url": "https://packagist.org/downloads/",
  321. "license": [
  322. "MIT"
  323. ],
  324. "authors": [
  325. {
  326. "name": "Jeremy Lindblom",
  327. "email": "jeremeamia@gmail.com",
  328. "homepage": "https://github.com/jeremeamia",
  329. "role": "Developer"
  330. }
  331. ],
  332. "description": "Serialize Closure objects, including their context and binding",
  333. "homepage": "https://github.com/jeremeamia/super_closure",
  334. "keywords": [
  335. "closure",
  336. "function",
  337. "lambda",
  338. "parser",
  339. "serializable",
  340. "serialize",
  341. "tokenizer"
  342. ]
  343. },
  344. {
  345. "name": "league/flysystem",
  346. "version": "1.0.27",
  347. "version_normalized": "1.0.27.0",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/thephpleague/flysystem.git",
  351. "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://packagist.phpcomposer.com/files/thephpleague/flysystem/50e2045ed70a7e75a5e30bc3662904f3b67af8a9.zip",
  356. "reference": "50e2045ed70a7e75a5e30bc3662904f3b67af8a9",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "php": ">=5.4.0"
  361. },
  362. "conflict": {
  363. "league/flysystem-sftp": "<1.0.6"
  364. },
  365. "require-dev": {
  366. "ext-fileinfo": "*",
  367. "mockery/mockery": "~0.9",
  368. "phpspec/phpspec": "^2.2",
  369. "phpunit/phpunit": "~4.8"
  370. },
  371. "suggest": {
  372. "ext-fileinfo": "Required for MimeType",
  373. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  374. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  375. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  376. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  377. "league/flysystem-copy": "Allows you to use Copy.com storage",
  378. "league/flysystem-dropbox": "Allows you to use Dropbox storage",
  379. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  380. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  381. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  382. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  383. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter"
  384. },
  385. "time": "2016-08-10 08:55:11",
  386. "type": "library",
  387. "extra": {
  388. "branch-alias": {
  389. "dev-master": "1.1-dev"
  390. }
  391. },
  392. "installation-source": "dist",
  393. "autoload": {
  394. "psr-4": {
  395. "League\\Flysystem\\": "src/"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Frank de Jonge",
  405. "email": "info@frenky.net"
  406. }
  407. ],
  408. "description": "Filesystem abstraction: Many filesystems, one API.",
  409. "keywords": [
  410. "Cloud Files",
  411. "WebDAV",
  412. "abstraction",
  413. "aws",
  414. "cloud",
  415. "copy.com",
  416. "dropbox",
  417. "file systems",
  418. "files",
  419. "filesystem",
  420. "filesystems",
  421. "ftp",
  422. "rackspace",
  423. "remote",
  424. "s3",
  425. "sftp",
  426. "storage"
  427. ]
  428. },
  429. {
  430. "name": "monolog/monolog",
  431. "version": "1.21.0",
  432. "version_normalized": "1.21.0.0",
  433. "source": {
  434. "type": "git",
  435. "url": "https://github.com/Seldaek/monolog.git",
  436. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952"
  437. },
  438. "dist": {
  439. "type": "zip",
  440. "url": "https://packagist.phpcomposer.com/files/Seldaek/monolog/f42fbdfd53e306bda545845e4dbfd3e72edb4952.zip",
  441. "reference": "f42fbdfd53e306bda545845e4dbfd3e72edb4952",
  442. "shasum": ""
  443. },
  444. "require": {
  445. "php": ">=5.3.0",
  446. "psr/log": "~1.0"
  447. },
  448. "provide": {
  449. "psr/log-implementation": "1.0.0"
  450. },
  451. "require-dev": {
  452. "aws/aws-sdk-php": "^2.4.9",
  453. "doctrine/couchdb": "~1.0@dev",
  454. "graylog2/gelf-php": "~1.0",
  455. "jakub-onderka/php-parallel-lint": "0.9",
  456. "php-amqplib/php-amqplib": "~2.4",
  457. "php-console/php-console": "^3.1.3",
  458. "phpunit/phpunit": "~4.5",
  459. "phpunit/phpunit-mock-objects": "2.3.0",
  460. "ruflin/elastica": ">=0.90 <3.0",
  461. "sentry/sentry": "^0.13",
  462. "swiftmailer/swiftmailer": "~5.3"
  463. },
  464. "suggest": {
  465. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  466. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  467. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  468. "ext-mongo": "Allow sending log messages to a MongoDB server",
  469. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  470. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  471. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  472. "php-console/php-console": "Allow sending log messages to Google Chrome",
  473. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  474. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  475. "sentry/sentry": "Allow sending log messages to a Sentry server"
  476. },
  477. "time": "2016-07-29 03:23:52",
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-master": "2.0.x-dev"
  482. }
  483. },
  484. "installation-source": "dist",
  485. "autoload": {
  486. "psr-4": {
  487. "Monolog\\": "src/Monolog"
  488. }
  489. },
  490. "notification-url": "https://packagist.org/downloads/",
  491. "license": [
  492. "MIT"
  493. ],
  494. "authors": [
  495. {
  496. "name": "Jordi Boggiano",
  497. "email": "j.boggiano@seld.be",
  498. "homepage": "http://seld.be"
  499. }
  500. ],
  501. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  502. "homepage": "http://github.com/Seldaek/monolog",
  503. "keywords": [
  504. "log",
  505. "logging",
  506. "psr-3"
  507. ]
  508. },
  509. {
  510. "name": "mtdowling/cron-expression",
  511. "version": "v1.1.0",
  512. "version_normalized": "1.1.0.0",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/mtdowling/cron-expression.git",
  516. "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://packagist.phpcomposer.com/files/mtdowling/cron-expression/c9ee7886f5a12902b225a1a12f36bb45f9ab89e5.zip",
  521. "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "php": ">=5.3.2"
  526. },
  527. "require-dev": {
  528. "phpunit/phpunit": "~4.0|~5.0"
  529. },
  530. "time": "2016-01-26 21:23:30",
  531. "type": "library",
  532. "installation-source": "dist",
  533. "autoload": {
  534. "psr-0": {
  535. "Cron": "src/"
  536. }
  537. },
  538. "notification-url": "https://packagist.org/downloads/",
  539. "license": [
  540. "MIT"
  541. ],
  542. "authors": [
  543. {
  544. "name": "Michael Dowling",
  545. "email": "mtdowling@gmail.com",
  546. "homepage": "https://github.com/mtdowling"
  547. }
  548. ],
  549. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  550. "keywords": [
  551. "cron",
  552. "schedule"
  553. ]
  554. },
  555. {
  556. "name": "symfony/polyfill-mbstring",
  557. "version": "v1.2.0",
  558. "version_normalized": "1.2.0.0",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/symfony/polyfill-mbstring.git",
  562. "reference": "dff51f72b0706335131b00a7f49606168c582594"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://packagist.phpcomposer.com/files/symfony/polyfill-mbstring/dff51f72b0706335131b00a7f49606168c582594.zip",
  567. "reference": "dff51f72b0706335131b00a7f49606168c582594",
  568. "shasum": ""
  569. },
  570. "require": {
  571. "php": ">=5.3.3"
  572. },
  573. "suggest": {
  574. "ext-mbstring": "For best performance"
  575. },
  576. "time": "2016-05-18 14:26:46",
  577. "type": "library",
  578. "extra": {
  579. "branch-alias": {
  580. "dev-master": "1.2-dev"
  581. }
  582. },
  583. "installation-source": "dist",
  584. "autoload": {
  585. "psr-4": {
  586. "Symfony\\Polyfill\\Mbstring\\": ""
  587. },
  588. "files": [
  589. "bootstrap.php"
  590. ]
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Nicolas Grekas",
  599. "email": "p@tchwork.com"
  600. },
  601. {
  602. "name": "Symfony Community",
  603. "homepage": "https://symfony.com/contributors"
  604. }
  605. ],
  606. "description": "Symfony polyfill for the Mbstring extension",
  607. "homepage": "https://symfony.com",
  608. "keywords": [
  609. "compatibility",
  610. "mbstring",
  611. "polyfill",
  612. "portable",
  613. "shim"
  614. ]
  615. },
  616. {
  617. "name": "symfony/translation",
  618. "version": "v3.0.9",
  619. "version_normalized": "3.0.9.0",
  620. "source": {
  621. "type": "git",
  622. "url": "https://github.com/symfony/translation.git",
  623. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26"
  624. },
  625. "dist": {
  626. "type": "zip",
  627. "url": "https://packagist.phpcomposer.com/files/symfony/translation/eee6c664853fd0576f21ae25725cfffeafe83f26.zip",
  628. "reference": "eee6c664853fd0576f21ae25725cfffeafe83f26",
  629. "shasum": ""
  630. },
  631. "require": {
  632. "php": ">=5.5.9",
  633. "symfony/polyfill-mbstring": "~1.0"
  634. },
  635. "conflict": {
  636. "symfony/config": "<2.8"
  637. },
  638. "require-dev": {
  639. "psr/log": "~1.0",
  640. "symfony/config": "~2.8|~3.0",
  641. "symfony/intl": "~2.8|~3.0",
  642. "symfony/yaml": "~2.8|~3.0"
  643. },
  644. "suggest": {
  645. "psr/log": "To use logging capability in translator",
  646. "symfony/config": "",
  647. "symfony/yaml": ""
  648. },
  649. "time": "2016-07-30 07:22:48",
  650. "type": "library",
  651. "extra": {
  652. "branch-alias": {
  653. "dev-master": "3.0-dev"
  654. }
  655. },
  656. "installation-source": "dist",
  657. "autoload": {
  658. "psr-4": {
  659. "Symfony\\Component\\Translation\\": ""
  660. },
  661. "exclude-from-classmap": [
  662. "/Tests/"
  663. ]
  664. },
  665. "notification-url": "https://packagist.org/downloads/",
  666. "license": [
  667. "MIT"
  668. ],
  669. "authors": [
  670. {
  671. "name": "Fabien Potencier",
  672. "email": "fabien@symfony.com"
  673. },
  674. {
  675. "name": "Symfony Community",
  676. "homepage": "https://symfony.com/contributors"
  677. }
  678. ],
  679. "description": "Symfony Translation Component",
  680. "homepage": "https://symfony.com"
  681. },
  682. {
  683. "name": "nesbot/carbon",
  684. "version": "1.21.0",
  685. "version_normalized": "1.21.0.0",
  686. "source": {
  687. "type": "git",
  688. "url": "https://github.com/briannesbitt/Carbon.git",
  689. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
  690. },
  691. "dist": {
  692. "type": "zip",
  693. "url": "https://packagist.phpcomposer.com/files/briannesbitt/Carbon/7b08ec6f75791e130012f206e3f7b0e76e18e3d7.zip",
  694. "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
  695. "shasum": ""
  696. },
  697. "require": {
  698. "php": ">=5.3.0",
  699. "symfony/translation": "~2.6|~3.0"
  700. },
  701. "require-dev": {
  702. "phpunit/phpunit": "~4.0|~5.0"
  703. },
  704. "time": "2015-11-04 20:07:17",
  705. "type": "library",
  706. "installation-source": "dist",
  707. "autoload": {
  708. "psr-4": {
  709. "Carbon\\": "src/Carbon/"
  710. }
  711. },
  712. "notification-url": "https://packagist.org/downloads/",
  713. "license": [
  714. "MIT"
  715. ],
  716. "authors": [
  717. {
  718. "name": "Brian Nesbitt",
  719. "email": "brian@nesbot.com",
  720. "homepage": "http://nesbot.com"
  721. }
  722. ],
  723. "description": "A simple API extension for DateTime.",
  724. "homepage": "http://carbon.nesbot.com",
  725. "keywords": [
  726. "date",
  727. "datetime",
  728. "time"
  729. ]
  730. },
  731. {
  732. "name": "paragonie/random_compat",
  733. "version": "v1.4.1",
  734. "version_normalized": "1.4.1.0",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/paragonie/random_compat.git",
  738. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://packagist.phpcomposer.com/files/paragonie/random_compat/c7e26a21ba357863de030f0b9e701c7d04593774.zip",
  743. "reference": "c7e26a21ba357863de030f0b9e701c7d04593774",
  744. "shasum": ""
  745. },
  746. "require": {
  747. "php": ">=5.2.0"
  748. },
  749. "require-dev": {
  750. "phpunit/phpunit": "4.*|5.*"
  751. },
  752. "suggest": {
  753. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  754. },
  755. "time": "2016-03-18 20:34:03",
  756. "type": "library",
  757. "installation-source": "dist",
  758. "autoload": {
  759. "files": [
  760. "lib/random.php"
  761. ]
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Paragon Initiative Enterprises",
  770. "email": "security@paragonie.com",
  771. "homepage": "https://paragonie.com"
  772. }
  773. ],
  774. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  775. "keywords": [
  776. "csprng",
  777. "pseudorandom",
  778. "random"
  779. ]
  780. },
  781. {
  782. "name": "symfony/var-dumper",
  783. "version": "v3.0.9",
  784. "version_normalized": "3.0.9.0",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/symfony/var-dumper.git",
  788. "reference": "1f7e071aafc6676fcb6e3f0497f87c2397247377"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://packagist.phpcomposer.com/files/symfony/var-dumper/1f7e071aafc6676fcb6e3f0497f87c2397247377.zip",
  793. "reference": "1f7e071aafc6676fcb6e3f0497f87c2397247377",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "php": ">=5.5.9",
  798. "symfony/polyfill-mbstring": "~1.0"
  799. },
  800. "require-dev": {
  801. "twig/twig": "~1.20|~2.0"
  802. },
  803. "suggest": {
  804. "ext-symfony_debug": ""
  805. },
  806. "time": "2016-07-26 08:03:56",
  807. "type": "library",
  808. "extra": {
  809. "branch-alias": {
  810. "dev-master": "3.0-dev"
  811. }
  812. },
  813. "installation-source": "dist",
  814. "autoload": {
  815. "files": [
  816. "Resources/functions/dump.php"
  817. ],
  818. "psr-4": {
  819. "Symfony\\Component\\VarDumper\\": ""
  820. },
  821. "exclude-from-classmap": [
  822. "/Tests/"
  823. ]
  824. },
  825. "notification-url": "https://packagist.org/downloads/",
  826. "license": [
  827. "MIT"
  828. ],
  829. "authors": [
  830. {
  831. "name": "Nicolas Grekas",
  832. "email": "p@tchwork.com"
  833. },
  834. {
  835. "name": "Symfony Community",
  836. "homepage": "https://symfony.com/contributors"
  837. }
  838. ],
  839. "description": "Symfony mechanism for exploring and dumping PHP variables",
  840. "homepage": "https://symfony.com",
  841. "keywords": [
  842. "debug",
  843. "dump"
  844. ]
  845. },
  846. {
  847. "name": "symfony/console",
  848. "version": "v3.0.9",
  849. "version_normalized": "3.0.9.0",
  850. "source": {
  851. "type": "git",
  852. "url": "https://github.com/symfony/console.git",
  853. "reference": "926061e74229e935d3c5b4e9ba87237316c6693f"
  854. },
  855. "dist": {
  856. "type": "zip",
  857. "url": "https://packagist.phpcomposer.com/files/symfony/console/926061e74229e935d3c5b4e9ba87237316c6693f.zip",
  858. "reference": "926061e74229e935d3c5b4e9ba87237316c6693f",
  859. "shasum": ""
  860. },
  861. "require": {
  862. "php": ">=5.5.9",
  863. "symfony/polyfill-mbstring": "~1.0"
  864. },
  865. "require-dev": {
  866. "psr/log": "~1.0",
  867. "symfony/event-dispatcher": "~2.8|~3.0",
  868. "symfony/process": "~2.8|~3.0"
  869. },
  870. "suggest": {
  871. "psr/log": "For using the console logger",
  872. "symfony/event-dispatcher": "",
  873. "symfony/process": ""
  874. },
  875. "time": "2016-07-30 07:22:48",
  876. "type": "library",
  877. "extra": {
  878. "branch-alias": {
  879. "dev-master": "3.0-dev"
  880. }
  881. },
  882. "installation-source": "dist",
  883. "autoload": {
  884. "psr-4": {
  885. "Symfony\\Component\\Console\\": ""
  886. },
  887. "exclude-from-classmap": [
  888. "/Tests/"
  889. ]
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Fabien Potencier",
  898. "email": "fabien@symfony.com"
  899. },
  900. {
  901. "name": "Symfony Community",
  902. "homepage": "https://symfony.com/contributors"
  903. }
  904. ],
  905. "description": "Symfony Console Component",
  906. "homepage": "https://symfony.com"
  907. },
  908. {
  909. "name": "jakub-onderka/php-console-highlighter",
  910. "version": "v0.3.2",
  911. "version_normalized": "0.3.2.0",
  912. "source": {
  913. "type": "git",
  914. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  915. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
  916. },
  917. "dist": {
  918. "type": "zip",
  919. "url": "https://packagist.phpcomposer.com/files/JakubOnderka/PHP-Console-Highlighter/7daa75df45242c8d5b75a22c00a201e7954e4fb5.zip",
  920. "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
  921. "shasum": ""
  922. },
  923. "require": {
  924. "jakub-onderka/php-console-color": "~0.1",
  925. "php": ">=5.3.0"
  926. },
  927. "require-dev": {
  928. "jakub-onderka/php-code-style": "~1.0",
  929. "jakub-onderka/php-parallel-lint": "~0.5",
  930. "jakub-onderka/php-var-dump-check": "~0.1",
  931. "phpunit/phpunit": "~4.0",
  932. "squizlabs/php_codesniffer": "~1.5"
  933. },
  934. "time": "2015-04-20 18:58:01",
  935. "type": "library",
  936. "installation-source": "dist",
  937. "autoload": {
  938. "psr-0": {
  939. "JakubOnderka\\PhpConsoleHighlighter": "src/"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Jakub Onderka",
  949. "email": "acci@acci.cz",
  950. "homepage": "http://www.acci.cz/"
  951. }
  952. ]
  953. },
  954. {
  955. "name": "dnoegel/php-xdg-base-dir",
  956. "version": "0.1",
  957. "version_normalized": "0.1.0.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  961. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://packagist.phpcomposer.com/files/dnoegel/php-xdg-base-dir/265b8593498b997dc2d31e75b89f053b5cc9621a.zip",
  966. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "php": ">=5.3.2"
  971. },
  972. "require-dev": {
  973. "phpunit/phpunit": "@stable"
  974. },
  975. "time": "2014-10-24 07:27:01",
  976. "type": "project",
  977. "installation-source": "dist",
  978. "autoload": {
  979. "psr-4": {
  980. "XdgBaseDir\\": "src/"
  981. }
  982. },
  983. "notification-url": "https://packagist.org/downloads/",
  984. "license": [
  985. "MIT"
  986. ],
  987. "description": "implementation of xdg base directory specification for php"
  988. },
  989. {
  990. "name": "psy/psysh",
  991. "version": "v0.7.2",
  992. "version_normalized": "0.7.2.0",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/bobthecow/psysh.git",
  996. "reference": "e64e10b20f8d229cac76399e1f3edddb57a0f280"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://packagist.phpcomposer.com/files/bobthecow/psysh/e64e10b20f8d229cac76399e1f3edddb57a0f280.zip",
  1001. "reference": "e64e10b20f8d229cac76399e1f3edddb57a0f280",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "dnoegel/php-xdg-base-dir": "0.1",
  1006. "jakub-onderka/php-console-highlighter": "0.3.*",
  1007. "nikic/php-parser": "^1.2.1|~2.0",
  1008. "php": ">=5.3.9",
  1009. "symfony/console": "~2.3.10|^2.4.2|~3.0",
  1010. "symfony/var-dumper": "~2.7|~3.0"
  1011. },
  1012. "require-dev": {
  1013. "fabpot/php-cs-fixer": "~1.5",
  1014. "phpunit/phpunit": "~3.7|~4.0|~5.0",
  1015. "squizlabs/php_codesniffer": "~2.0",
  1016. "symfony/finder": "~2.1|~3.0"
  1017. },
  1018. "suggest": {
  1019. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  1020. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  1021. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  1022. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  1023. },
  1024. "time": "2016-03-09 05:03:14",
  1025. "bin": [
  1026. "bin/psysh"
  1027. ],
  1028. "type": "library",
  1029. "extra": {
  1030. "branch-alias": {
  1031. "dev-develop": "0.8.x-dev"
  1032. }
  1033. },
  1034. "installation-source": "dist",
  1035. "autoload": {
  1036. "files": [
  1037. "src/Psy/functions.php"
  1038. ],
  1039. "psr-4": {
  1040. "Psy\\": "src/Psy/"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Justin Hileman",
  1050. "email": "justin@justinhileman.info",
  1051. "homepage": "http://justinhileman.com"
  1052. }
  1053. ],
  1054. "description": "An interactive shell for modern PHP.",
  1055. "homepage": "http://psysh.org",
  1056. "keywords": [
  1057. "REPL",
  1058. "console",
  1059. "interactive",
  1060. "shell"
  1061. ]
  1062. },
  1063. {
  1064. "name": "swiftmailer/swiftmailer",
  1065. "version": "v5.4.3",
  1066. "version_normalized": "5.4.3.0",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1070. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://packagist.phpcomposer.com/files/swiftmailer/swiftmailer/4cc92842069c2bbc1f28daaaf1d2576ec4dfe153.zip",
  1075. "reference": "4cc92842069c2bbc1f28daaaf1d2576ec4dfe153",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "php": ">=5.3.3"
  1080. },
  1081. "require-dev": {
  1082. "mockery/mockery": "~0.9.1"
  1083. },
  1084. "time": "2016-07-08 11:51:25",
  1085. "type": "library",
  1086. "extra": {
  1087. "branch-alias": {
  1088. "dev-master": "5.4-dev"
  1089. }
  1090. },
  1091. "installation-source": "dist",
  1092. "autoload": {
  1093. "files": [
  1094. "lib/swift_required.php"
  1095. ]
  1096. },
  1097. "notification-url": "https://packagist.org/downloads/",
  1098. "license": [
  1099. "MIT"
  1100. ],
  1101. "authors": [
  1102. {
  1103. "name": "Chris Corbyn"
  1104. },
  1105. {
  1106. "name": "Fabien Potencier",
  1107. "email": "fabien@symfony.com"
  1108. }
  1109. ],
  1110. "description": "Swiftmailer, free feature-rich PHP mailer",
  1111. "homepage": "http://swiftmailer.org",
  1112. "keywords": [
  1113. "email",
  1114. "mail",
  1115. "mailer"
  1116. ]
  1117. },
  1118. {
  1119. "name": "symfony/finder",
  1120. "version": "v3.0.9",
  1121. "version_normalized": "3.0.9.0",
  1122. "source": {
  1123. "type": "git",
  1124. "url": "https://github.com/symfony/finder.git",
  1125. "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9"
  1126. },
  1127. "dist": {
  1128. "type": "zip",
  1129. "url": "https://packagist.phpcomposer.com/files/symfony/finder/3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9.zip",
  1130. "reference": "3eb4e64c6145ef8b92adefb618a74ebdde9e3fe9",
  1131. "shasum": ""
  1132. },
  1133. "require": {
  1134. "php": ">=5.5.9"
  1135. },
  1136. "time": "2016-06-29 05:40:00",
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "3.0-dev"
  1141. }
  1142. },
  1143. "installation-source": "dist",
  1144. "autoload": {
  1145. "psr-4": {
  1146. "Symfony\\Component\\Finder\\": ""
  1147. },
  1148. "exclude-from-classmap": [
  1149. "/Tests/"
  1150. ]
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Fabien Potencier",
  1159. "email": "fabien@symfony.com"
  1160. },
  1161. {
  1162. "name": "Symfony Community",
  1163. "homepage": "https://symfony.com/contributors"
  1164. }
  1165. ],
  1166. "description": "Symfony Finder Component",
  1167. "homepage": "https://symfony.com"
  1168. },
  1169. {
  1170. "name": "symfony/http-foundation",
  1171. "version": "v3.0.9",
  1172. "version_normalized": "3.0.9.0",
  1173. "source": {
  1174. "type": "git",
  1175. "url": "https://github.com/symfony/http-foundation.git",
  1176. "reference": "49ba00f8ede742169cb6b70abe33243f4d673f82"
  1177. },
  1178. "dist": {
  1179. "type": "zip",
  1180. "url": "https://packagist.phpcomposer.com/files/symfony/http-foundation/49ba00f8ede742169cb6b70abe33243f4d673f82.zip",
  1181. "reference": "49ba00f8ede742169cb6b70abe33243f4d673f82",
  1182. "shasum": ""
  1183. },
  1184. "require": {
  1185. "php": ">=5.5.9",
  1186. "symfony/polyfill-mbstring": "~1.1"
  1187. },
  1188. "require-dev": {
  1189. "symfony/expression-language": "~2.8|~3.0"
  1190. },
  1191. "time": "2016-07-17 13:54:30",
  1192. "type": "library",
  1193. "extra": {
  1194. "branch-alias": {
  1195. "dev-master": "3.0-dev"
  1196. }
  1197. },
  1198. "installation-source": "dist",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Symfony\\Component\\HttpFoundation\\": ""
  1202. },
  1203. "exclude-from-classmap": [
  1204. "/Tests/"
  1205. ]
  1206. },
  1207. "notification-url": "https://packagist.org/downloads/",
  1208. "license": [
  1209. "MIT"
  1210. ],
  1211. "authors": [
  1212. {
  1213. "name": "Fabien Potencier",
  1214. "email": "fabien@symfony.com"
  1215. },
  1216. {
  1217. "name": "Symfony Community",
  1218. "homepage": "https://symfony.com/contributors"
  1219. }
  1220. ],
  1221. "description": "Symfony HttpFoundation Component",
  1222. "homepage": "https://symfony.com"
  1223. },
  1224. {
  1225. "name": "symfony/debug",
  1226. "version": "v3.0.9",
  1227. "version_normalized": "3.0.9.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/symfony/debug.git",
  1231. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://packagist.phpcomposer.com/files/symfony/debug/697c527acd9ea1b2d3efac34d9806bf255278b0a.zip",
  1236. "reference": "697c527acd9ea1b2d3efac34d9806bf255278b0a",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": ">=5.5.9",
  1241. "psr/log": "~1.0"
  1242. },
  1243. "conflict": {
  1244. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  1245. },
  1246. "require-dev": {
  1247. "symfony/class-loader": "~2.8|~3.0",
  1248. "symfony/http-kernel": "~2.8|~3.0"
  1249. },
  1250. "time": "2016-07-30 07:22:48",
  1251. "type": "library",
  1252. "extra": {
  1253. "branch-alias": {
  1254. "dev-master": "3.0-dev"
  1255. }
  1256. },
  1257. "installation-source": "dist",
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Symfony\\Component\\Debug\\": ""
  1261. },
  1262. "exclude-from-classmap": [
  1263. "/Tests/"
  1264. ]
  1265. },
  1266. "notification-url": "https://packagist.org/downloads/",
  1267. "license": [
  1268. "MIT"
  1269. ],
  1270. "authors": [
  1271. {
  1272. "name": "Fabien Potencier",
  1273. "email": "fabien@symfony.com"
  1274. },
  1275. {
  1276. "name": "Symfony Community",
  1277. "homepage": "https://symfony.com/contributors"
  1278. }
  1279. ],
  1280. "description": "Symfony Debug Component",
  1281. "homepage": "https://symfony.com"
  1282. },
  1283. {
  1284. "name": "symfony/http-kernel",
  1285. "version": "v3.0.9",
  1286. "version_normalized": "3.0.9.0",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/symfony/http-kernel.git",
  1290. "reference": "d97ba4425e36e79c794e7d14ff36f00f081b37b3"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://packagist.phpcomposer.com/files/symfony/http-kernel/d97ba4425e36e79c794e7d14ff36f00f081b37b3.zip",
  1295. "reference": "d97ba4425e36e79c794e7d14ff36f00f081b37b3",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=5.5.9",
  1300. "psr/log": "~1.0",
  1301. "symfony/debug": "~2.8|~3.0",
  1302. "symfony/event-dispatcher": "~2.8|~3.0",
  1303. "symfony/http-foundation": "~2.8.8|~3.0.8|~3.1.2|~3.2"
  1304. },
  1305. "conflict": {
  1306. "symfony/config": "<2.8"
  1307. },
  1308. "require-dev": {
  1309. "symfony/browser-kit": "~2.8|~3.0",
  1310. "symfony/class-loader": "~2.8|~3.0",
  1311. "symfony/config": "~2.8|~3.0",
  1312. "symfony/console": "~2.8|~3.0",
  1313. "symfony/css-selector": "~2.8|~3.0",
  1314. "symfony/dependency-injection": "~2.8|~3.0",
  1315. "symfony/dom-crawler": "~2.8|~3.0",
  1316. "symfony/expression-language": "~2.8|~3.0",
  1317. "symfony/finder": "~2.8|~3.0",
  1318. "symfony/process": "~2.8|~3.0",
  1319. "symfony/routing": "~2.8|~3.0",
  1320. "symfony/stopwatch": "~2.8|~3.0",
  1321. "symfony/templating": "~2.8|~3.0",
  1322. "symfony/translation": "~2.8|~3.0",
  1323. "symfony/var-dumper": "~2.8|~3.0"
  1324. },
  1325. "suggest": {
  1326. "symfony/browser-kit": "",
  1327. "symfony/class-loader": "",
  1328. "symfony/config": "",
  1329. "symfony/console": "",
  1330. "symfony/dependency-injection": "",
  1331. "symfony/finder": "",
  1332. "symfony/var-dumper": ""
  1333. },
  1334. "time": "2016-07-30 09:10:37",
  1335. "type": "library",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "3.0-dev"
  1339. }
  1340. },
  1341. "installation-source": "dist",
  1342. "autoload": {
  1343. "psr-4": {
  1344. "Symfony\\Component\\HttpKernel\\": ""
  1345. },
  1346. "exclude-from-classmap": [
  1347. "/Tests/"
  1348. ]
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "authors": [
  1355. {
  1356. "name": "Fabien Potencier",
  1357. "email": "fabien@symfony.com"
  1358. },
  1359. {
  1360. "name": "Symfony Community",
  1361. "homepage": "https://symfony.com/contributors"
  1362. }
  1363. ],
  1364. "description": "Symfony HttpKernel Component",
  1365. "homepage": "https://symfony.com"
  1366. },
  1367. {
  1368. "name": "symfony/process",
  1369. "version": "v3.0.9",
  1370. "version_normalized": "3.0.9.0",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/symfony/process.git",
  1374. "reference": "768debc5996f599c4372b322d9061dba2a4bf505"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://packagist.phpcomposer.com/files/symfony/process/768debc5996f599c4372b322d9061dba2a4bf505.zip",
  1379. "reference": "768debc5996f599c4372b322d9061dba2a4bf505",
  1380. "shasum": ""
  1381. },
  1382. "require": {
  1383. "php": ">=5.5.9"
  1384. },
  1385. "time": "2016-07-28 11:13:34",
  1386. "type": "library",
  1387. "extra": {
  1388. "branch-alias": {
  1389. "dev-master": "3.0-dev"
  1390. }
  1391. },
  1392. "installation-source": "dist",
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Symfony\\Component\\Process\\": ""
  1396. },
  1397. "exclude-from-classmap": [
  1398. "/Tests/"
  1399. ]
  1400. },
  1401. "notification-url": "https://packagist.org/downloads/",
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "Fabien Potencier",
  1408. "email": "fabien@symfony.com"
  1409. },
  1410. {
  1411. "name": "Symfony Community",
  1412. "homepage": "https://symfony.com/contributors"
  1413. }
  1414. ],
  1415. "description": "Symfony Process Component",
  1416. "homepage": "https://symfony.com"
  1417. },
  1418. {
  1419. "name": "symfony/routing",
  1420. "version": "v3.0.9",
  1421. "version_normalized": "3.0.9.0",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/symfony/routing.git",
  1425. "reference": "9038984bd9c05ab07280121e9e10f61a7231457b"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://packagist.phpcomposer.com/files/symfony/routing/9038984bd9c05ab07280121e9e10f61a7231457b.zip",
  1430. "reference": "9038984bd9c05ab07280121e9e10f61a7231457b",
  1431. "shasum": ""
  1432. },
  1433. "require": {
  1434. "php": ">=5.5.9"
  1435. },
  1436. "conflict": {
  1437. "symfony/config": "<2.8"
  1438. },
  1439. "require-dev": {
  1440. "doctrine/annotations": "~1.0",
  1441. "doctrine/common": "~2.2",
  1442. "psr/log": "~1.0",
  1443. "symfony/config": "~2.8|~3.0",
  1444. "symfony/expression-language": "~2.8|~3.0",
  1445. "symfony/http-foundation": "~2.8|~3.0",
  1446. "symfony/yaml": "~2.8|~3.0"
  1447. },
  1448. "suggest": {
  1449. "doctrine/annotations": "For using the annotation loader",
  1450. "symfony/config": "For using the all-in-one router or any loader",
  1451. "symfony/dependency-injection": "For loading routes from a service",
  1452. "symfony/expression-language": "For using expression matching",
  1453. "symfony/http-foundation": "For using a Symfony Request object",
  1454. "symfony/yaml": "For using the YAML loader"
  1455. },
  1456. "time": "2016-06-29 05:40:00",
  1457. "type": "library",
  1458. "extra": {
  1459. "branch-alias": {
  1460. "dev-master": "3.0-dev"
  1461. }
  1462. },
  1463. "installation-source": "dist",
  1464. "autoload": {
  1465. "psr-4": {
  1466. "Symfony\\Component\\Routing\\": ""
  1467. },
  1468. "exclude-from-classmap": [
  1469. "/Tests/"
  1470. ]
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "authors": [
  1477. {
  1478. "name": "Fabien Potencier",
  1479. "email": "fabien@symfony.com"
  1480. },
  1481. {
  1482. "name": "Symfony Community",
  1483. "homepage": "https://symfony.com/contributors"
  1484. }
  1485. ],
  1486. "description": "Symfony Routing Component",
  1487. "homepage": "https://symfony.com",
  1488. "keywords": [
  1489. "router",
  1490. "routing",
  1491. "uri",
  1492. "url"
  1493. ]
  1494. },
  1495. {
  1496. "name": "zizaco/entrust",
  1497. "version": "5.2.x-dev",
  1498. "version_normalized": "5.2.9999999.9999999-dev",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/Zizaco/entrust.git",
  1502. "reference": "b749bff868026336dec1ba1a16c150728697353d"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://packagist.phpcomposer.com/files/Zizaco/entrust/b749bff868026336dec1ba1a16c150728697353d.zip",
  1507. "reference": "b749bff868026336dec1ba1a16c150728697353d",
  1508. "shasum": ""
  1509. },
  1510. "require": {
  1511. "illuminate/cache": "~5.0",
  1512. "illuminate/console": "~5.0",
  1513. "illuminate/support": "~5.0",
  1514. "php": ">=5.5.0"
  1515. },
  1516. "require-dev": {
  1517. "illuminate/database": "~5.0",
  1518. "mockery/mockery": "dev-master",
  1519. "phpunit/phpunit": "~4.1",
  1520. "sami/sami": "dev-master"
  1521. },
  1522. "time": "2016-03-24 15:24:42",
  1523. "type": "library",
  1524. "installation-source": "dist",
  1525. "autoload": {
  1526. "classmap": [
  1527. "src/commands"
  1528. ],
  1529. "psr-4": {
  1530. "Zizaco\\Entrust\\": "src/Entrust/"
  1531. }
  1532. },
  1533. "notification-url": "https://packagist.org/downloads/",
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "authors": [
  1538. {
  1539. "name": "Andrew Elkins",
  1540. "homepage": "http://andrewelkins.com"
  1541. },
  1542. {
  1543. "name": "Zizaco Zizuini",
  1544. "email": "zizaco@gmail.com"
  1545. },
  1546. {
  1547. "name": "Ben Batschelet",
  1548. "homepage": "http://github.com/bbatsche"
  1549. },
  1550. {
  1551. "name": "Michele Angioni",
  1552. "email": "michele.angioni@gmail.com"
  1553. }
  1554. ],
  1555. "description": "This package provides a flexible way to add Role-based Permissions to Laravel",
  1556. "keywords": [
  1557. "acl",
  1558. "auth",
  1559. "illuminate",
  1560. "laravel",
  1561. "permission",
  1562. "roles"
  1563. ]
  1564. },
  1565. {
  1566. "name": "fzaninotto/faker",
  1567. "version": "v1.6.0",
  1568. "version_normalized": "1.6.0.0",
  1569. "source": {
  1570. "type": "git",
  1571. "url": "https://github.com/fzaninotto/Faker.git",
  1572. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123"
  1573. },
  1574. "dist": {
  1575. "type": "zip",
  1576. "url": "https://packagist.phpcomposer.com/files/fzaninotto/Faker/44f9a286a04b80c76a4e5fb7aad8bb539b920123.zip",
  1577. "reference": "44f9a286a04b80c76a4e5fb7aad8bb539b920123",
  1578. "shasum": ""
  1579. },
  1580. "require": {
  1581. "php": "^5.3.3|^7.0"
  1582. },
  1583. "require-dev": {
  1584. "ext-intl": "*",
  1585. "phpunit/phpunit": "~4.0",
  1586. "squizlabs/php_codesniffer": "~1.5"
  1587. },
  1588. "time": "2016-04-29 12:21:54",
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": []
  1592. },
  1593. "installation-source": "dist",
  1594. "autoload": {
  1595. "psr-4": {
  1596. "Faker\\": "src/Faker/"
  1597. }
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "François Zaninotto"
  1606. }
  1607. ],
  1608. "description": "Faker is a PHP library that generates fake data for you.",
  1609. "keywords": [
  1610. "data",
  1611. "faker",
  1612. "fixtures"
  1613. ]
  1614. },
  1615. {
  1616. "name": "hamcrest/hamcrest-php",
  1617. "version": "v1.2.2",
  1618. "version_normalized": "1.2.2.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/hamcrest/hamcrest-php.git",
  1622. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://packagist.phpcomposer.com/files/hamcrest/hamcrest-php/b37020aa976fa52d3de9aa904aa2522dc518f79c.zip",
  1627. "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c",
  1628. "shasum": ""
  1629. },
  1630. "require": {
  1631. "php": ">=5.3.2"
  1632. },
  1633. "replace": {
  1634. "cordoval/hamcrest-php": "*",
  1635. "davedevelopment/hamcrest-php": "*",
  1636. "kodova/hamcrest-php": "*"
  1637. },
  1638. "require-dev": {
  1639. "phpunit/php-file-iterator": "1.3.3",
  1640. "satooshi/php-coveralls": "dev-master"
  1641. },
  1642. "time": "2015-05-11 14:41:42",
  1643. "type": "library",
  1644. "installation-source": "dist",
  1645. "autoload": {
  1646. "classmap": [
  1647. "hamcrest"
  1648. ],
  1649. "files": [
  1650. "hamcrest/Hamcrest.php"
  1651. ]
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "BSD"
  1656. ],
  1657. "description": "This is the PHP port of Hamcrest Matchers",
  1658. "keywords": [
  1659. "test"
  1660. ]
  1661. },
  1662. {
  1663. "name": "mockery/mockery",
  1664. "version": "0.9.5",
  1665. "version_normalized": "0.9.5.0",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/padraic/mockery.git",
  1669. "reference": "4db079511a283e5aba1b3c2fb19037c645e70fc2"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://packagist.phpcomposer.com/files/padraic/mockery/4db079511a283e5aba1b3c2fb19037c645e70fc2.zip",
  1674. "reference": "4db079511a283e5aba1b3c2fb19037c645e70fc2",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "hamcrest/hamcrest-php": "~1.1",
  1679. "lib-pcre": ">=7.0",
  1680. "php": ">=5.3.2"
  1681. },
  1682. "require-dev": {
  1683. "phpunit/phpunit": "~4.0"
  1684. },
  1685. "time": "2016-05-22 21:52:33",
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "0.9.x-dev"
  1690. }
  1691. },
  1692. "installation-source": "dist",
  1693. "autoload": {
  1694. "psr-0": {
  1695. "Mockery": "library/"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "BSD-3-Clause"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Pádraic Brady",
  1705. "email": "padraic.brady@gmail.com",
  1706. "homepage": "http://blog.astrumfutura.com"
  1707. },
  1708. {
  1709. "name": "Dave Marshall",
  1710. "email": "dave.marshall@atstsolutions.co.uk",
  1711. "homepage": "http://davedevelopment.co.uk"
  1712. }
  1713. ],
  1714. "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.",
  1715. "homepage": "http://github.com/padraic/mockery",
  1716. "keywords": [
  1717. "BDD",
  1718. "TDD",
  1719. "library",
  1720. "mock",
  1721. "mock objects",
  1722. "mockery",
  1723. "stub",
  1724. "test",
  1725. "test double",
  1726. "testing"
  1727. ]
  1728. },
  1729. {
  1730. "name": "webmozart/assert",
  1731. "version": "1.1.0",
  1732. "version_normalized": "1.1.0.0",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/webmozart/assert.git",
  1736. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://packagist.phpcomposer.com/files/webmozart/assert/bb2d123231c095735130cc8f6d31385a44c7b308.zip",
  1741. "reference": "bb2d123231c095735130cc8f6d31385a44c7b308",
  1742. "shasum": ""
  1743. },
  1744. "require": {
  1745. "php": "^5.3.3|^7.0"
  1746. },
  1747. "require-dev": {
  1748. "phpunit/phpunit": "^4.6",
  1749. "sebastian/version": "^1.0.1"
  1750. },
  1751. "time": "2016-08-09 15:02:57",
  1752. "type": "library",
  1753. "extra": {
  1754. "branch-alias": {
  1755. "dev-master": "1.2-dev"
  1756. }
  1757. },
  1758. "installation-source": "dist",
  1759. "autoload": {
  1760. "psr-4": {
  1761. "Webmozart\\Assert\\": "src/"
  1762. }
  1763. },
  1764. "notification-url": "https://packagist.org/downloads/",
  1765. "license": [
  1766. "MIT"
  1767. ],
  1768. "authors": [
  1769. {
  1770. "name": "Bernhard Schussek",
  1771. "email": "bschussek@gmail.com"
  1772. }
  1773. ],
  1774. "description": "Assertions to validate method input/output with nice error messages.",
  1775. "keywords": [
  1776. "assert",
  1777. "check",
  1778. "validate"
  1779. ]
  1780. },
  1781. {
  1782. "name": "phpdocumentor/reflection-common",
  1783. "version": "1.0",
  1784. "version_normalized": "1.0.0.0",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1788. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://packagist.phpcomposer.com/files/phpDocumentor/ReflectionCommon/144c307535e82c8fdcaacbcfc1d6d8eeb896687c.zip",
  1793. "reference": "144c307535e82c8fdcaacbcfc1d6d8eeb896687c",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=5.5"
  1798. },
  1799. "require-dev": {
  1800. "phpunit/phpunit": "^4.6"
  1801. },
  1802. "time": "2015-12-27 11:43:31",
  1803. "type": "library",
  1804. "extra": {
  1805. "branch-alias": {
  1806. "dev-master": "1.0.x-dev"
  1807. }
  1808. },
  1809. "installation-source": "dist",
  1810. "autoload": {
  1811. "psr-4": {
  1812. "phpDocumentor\\Reflection\\": [
  1813. "src"
  1814. ]
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Jaap van Otterdijk",
  1824. "email": "opensource@ijaap.nl"
  1825. }
  1826. ],
  1827. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1828. "homepage": "http://www.phpdoc.org",
  1829. "keywords": [
  1830. "FQSEN",
  1831. "phpDocumentor",
  1832. "phpdoc",
  1833. "reflection",
  1834. "static analysis"
  1835. ]
  1836. },
  1837. {
  1838. "name": "phpdocumentor/type-resolver",
  1839. "version": "0.2",
  1840. "version_normalized": "0.2.0.0",
  1841. "source": {
  1842. "type": "git",
  1843. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1844. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443"
  1845. },
  1846. "dist": {
  1847. "type": "zip",
  1848. "url": "https://packagist.phpcomposer.com/files/phpDocumentor/TypeResolver/b39c7a5b194f9ed7bd0dd345c751007a41862443.zip",
  1849. "reference": "b39c7a5b194f9ed7bd0dd345c751007a41862443",
  1850. "shasum": ""
  1851. },
  1852. "require": {
  1853. "php": ">=5.5",
  1854. "phpdocumentor/reflection-common": "^1.0"
  1855. },
  1856. "require-dev": {
  1857. "mockery/mockery": "^0.9.4",
  1858. "phpunit/phpunit": "^5.2||^4.8.24"
  1859. },
  1860. "time": "2016-06-10 07:14:17",
  1861. "type": "library",
  1862. "extra": {
  1863. "branch-alias": {
  1864. "dev-master": "1.0.x-dev"
  1865. }
  1866. },
  1867. "installation-source": "dist",
  1868. "autoload": {
  1869. "psr-4": {
  1870. "phpDocumentor\\Reflection\\": [
  1871. "src/"
  1872. ]
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Mike van Riel",
  1882. "email": "me@mikevanriel.com"
  1883. }
  1884. ]
  1885. },
  1886. {
  1887. "name": "phpdocumentor/reflection-docblock",
  1888. "version": "3.1.0",
  1889. "version_normalized": "3.1.0.0",
  1890. "source": {
  1891. "type": "git",
  1892. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1893. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd"
  1894. },
  1895. "dist": {
  1896. "type": "zip",
  1897. "url": "https://packagist.phpcomposer.com/files/phpDocumentor/ReflectionDocBlock/9270140b940ff02e58ec577c237274e92cd40cdd.zip",
  1898. "reference": "9270140b940ff02e58ec577c237274e92cd40cdd",
  1899. "shasum": ""
  1900. },
  1901. "require": {
  1902. "php": ">=5.5",
  1903. "phpdocumentor/reflection-common": "^1.0@dev",
  1904. "phpdocumentor/type-resolver": "^0.2.0",
  1905. "webmozart/assert": "^1.0"
  1906. },
  1907. "require-dev": {
  1908. "mockery/mockery": "^0.9.4",
  1909. "phpunit/phpunit": "^4.4"
  1910. },
  1911. "time": "2016-06-10 09:48:41",
  1912. "type": "library",
  1913. "installation-source": "dist",
  1914. "autoload": {
  1915. "psr-4": {
  1916. "phpDocumentor\\Reflection\\": [
  1917. "src/"
  1918. ]
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Mike van Riel",
  1928. "email": "me@mikevanriel.com"
  1929. }
  1930. ],
  1931. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock."
  1932. },
  1933. {
  1934. "name": "phpunit/php-token-stream",
  1935. "version": "1.4.8",
  1936. "version_normalized": "1.4.8.0",
  1937. "source": {
  1938. "type": "git",
  1939. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1940. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
  1941. },
  1942. "dist": {
  1943. "type": "zip",
  1944. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-token-stream/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da.zip",
  1945. "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
  1946. "shasum": ""
  1947. },
  1948. "require": {
  1949. "ext-tokenizer": "*",
  1950. "php": ">=5.3.3"
  1951. },
  1952. "require-dev": {
  1953. "phpunit/phpunit": "~4.2"
  1954. },
  1955. "time": "2015-09-15 10:49:45",
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "1.4-dev"
  1960. }
  1961. },
  1962. "installation-source": "dist",
  1963. "autoload": {
  1964. "classmap": [
  1965. "src/"
  1966. ]
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "BSD-3-Clause"
  1971. ],
  1972. "authors": [
  1973. {
  1974. "name": "Sebastian Bergmann",
  1975. "email": "sebastian@phpunit.de"
  1976. }
  1977. ],
  1978. "description": "Wrapper around PHP's tokenizer extension.",
  1979. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1980. "keywords": [
  1981. "tokenizer"
  1982. ]
  1983. },
  1984. {
  1985. "name": "sebastian/version",
  1986. "version": "1.0.6",
  1987. "version_normalized": "1.0.6.0",
  1988. "source": {
  1989. "type": "git",
  1990. "url": "https://github.com/sebastianbergmann/version.git",
  1991. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1992. },
  1993. "dist": {
  1994. "type": "zip",
  1995. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/version/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6.zip",
  1996. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1997. "shasum": ""
  1998. },
  1999. "time": "2015-06-21 13:59:46",
  2000. "type": "library",
  2001. "installation-source": "dist",
  2002. "autoload": {
  2003. "classmap": [
  2004. "src/"
  2005. ]
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "BSD-3-Clause"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "Sebastian Bergmann",
  2014. "email": "sebastian@phpunit.de",
  2015. "role": "lead"
  2016. }
  2017. ],
  2018. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  2019. "homepage": "https://github.com/sebastianbergmann/version"
  2020. },
  2021. {
  2022. "name": "sebastian/global-state",
  2023. "version": "1.1.1",
  2024. "version_normalized": "1.1.1.0",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://github.com/sebastianbergmann/global-state.git",
  2028. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/global-state/bc37d50fea7d017d3d340f230811c9f1d7280af4.zip",
  2033. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  2034. "shasum": ""
  2035. },
  2036. "require": {
  2037. "php": ">=5.3.3"
  2038. },
  2039. "require-dev": {
  2040. "phpunit/phpunit": "~4.2"
  2041. },
  2042. "suggest": {
  2043. "ext-uopz": "*"
  2044. },
  2045. "time": "2015-10-12 03:26:01",
  2046. "type": "library",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-master": "1.0-dev"
  2050. }
  2051. },
  2052. "installation-source": "dist",
  2053. "autoload": {
  2054. "classmap": [
  2055. "src/"
  2056. ]
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "BSD-3-Clause"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "Sebastian Bergmann",
  2065. "email": "sebastian@phpunit.de"
  2066. }
  2067. ],
  2068. "description": "Snapshotting of global state",
  2069. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  2070. "keywords": [
  2071. "global state"
  2072. ]
  2073. },
  2074. {
  2075. "name": "sebastian/recursion-context",
  2076. "version": "1.0.2",
  2077. "version_normalized": "1.0.2.0",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  2081. "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/recursion-context/913401df809e99e4f47b27cdd781f4a258d58791.zip",
  2086. "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "php": ">=5.3.3"
  2091. },
  2092. "require-dev": {
  2093. "phpunit/phpunit": "~4.4"
  2094. },
  2095. "time": "2015-11-11 19:50:13",
  2096. "type": "library",
  2097. "extra": {
  2098. "branch-alias": {
  2099. "dev-master": "1.0.x-dev"
  2100. }
  2101. },
  2102. "installation-source": "dist",
  2103. "autoload": {
  2104. "classmap": [
  2105. "src/"
  2106. ]
  2107. },
  2108. "notification-url": "https://packagist.org/downloads/",
  2109. "license": [
  2110. "BSD-3-Clause"
  2111. ],
  2112. "authors": [
  2113. {
  2114. "name": "Jeff Welch",
  2115. "email": "whatthejeff@gmail.com"
  2116. },
  2117. {
  2118. "name": "Sebastian Bergmann",
  2119. "email": "sebastian@phpunit.de"
  2120. },
  2121. {
  2122. "name": "Adam Harvey",
  2123. "email": "aharvey@php.net"
  2124. }
  2125. ],
  2126. "description": "Provides functionality to recursively process PHP variables",
  2127. "homepage": "http://www.github.com/sebastianbergmann/recursion-context"
  2128. },
  2129. {
  2130. "name": "sebastian/exporter",
  2131. "version": "1.2.2",
  2132. "version_normalized": "1.2.2.0",
  2133. "source": {
  2134. "type": "git",
  2135. "url": "https://github.com/sebastianbergmann/exporter.git",
  2136. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  2137. },
  2138. "dist": {
  2139. "type": "zip",
  2140. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/exporter/42c4c2eec485ee3e159ec9884f95b431287edde4.zip",
  2141. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  2142. "shasum": ""
  2143. },
  2144. "require": {
  2145. "php": ">=5.3.3",
  2146. "sebastian/recursion-context": "~1.0"
  2147. },
  2148. "require-dev": {
  2149. "ext-mbstring": "*",
  2150. "phpunit/phpunit": "~4.4"
  2151. },
  2152. "time": "2016-06-17 09:04:28",
  2153. "type": "library",
  2154. "extra": {
  2155. "branch-alias": {
  2156. "dev-master": "1.3.x-dev"
  2157. }
  2158. },
  2159. "installation-source": "dist",
  2160. "autoload": {
  2161. "classmap": [
  2162. "src/"
  2163. ]
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "BSD-3-Clause"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Jeff Welch",
  2172. "email": "whatthejeff@gmail.com"
  2173. },
  2174. {
  2175. "name": "Volker Dusch",
  2176. "email": "github@wallbash.com"
  2177. },
  2178. {
  2179. "name": "Bernhard Schussek",
  2180. "email": "bschussek@2bepublished.at"
  2181. },
  2182. {
  2183. "name": "Sebastian Bergmann",
  2184. "email": "sebastian@phpunit.de"
  2185. },
  2186. {
  2187. "name": "Adam Harvey",
  2188. "email": "aharvey@php.net"
  2189. }
  2190. ],
  2191. "description": "Provides the functionality to export PHP variables for visualization",
  2192. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  2193. "keywords": [
  2194. "export",
  2195. "exporter"
  2196. ]
  2197. },
  2198. {
  2199. "name": "sebastian/environment",
  2200. "version": "1.3.8",
  2201. "version_normalized": "1.3.8.0",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/sebastianbergmann/environment.git",
  2205. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/environment/be2c607e43ce4c89ecd60e75c6a85c126e754aea.zip",
  2210. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  2211. "shasum": ""
  2212. },
  2213. "require": {
  2214. "php": "^5.3.3 || ^7.0"
  2215. },
  2216. "require-dev": {
  2217. "phpunit/phpunit": "^4.8 || ^5.0"
  2218. },
  2219. "time": "2016-08-18 05:49:44",
  2220. "type": "library",
  2221. "extra": {
  2222. "branch-alias": {
  2223. "dev-master": "1.3.x-dev"
  2224. }
  2225. },
  2226. "installation-source": "dist",
  2227. "autoload": {
  2228. "classmap": [
  2229. "src/"
  2230. ]
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "BSD-3-Clause"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "Sebastian Bergmann",
  2239. "email": "sebastian@phpunit.de"
  2240. }
  2241. ],
  2242. "description": "Provides functionality to handle HHVM/PHP environments",
  2243. "homepage": "http://www.github.com/sebastianbergmann/environment",
  2244. "keywords": [
  2245. "Xdebug",
  2246. "environment",
  2247. "hhvm"
  2248. ]
  2249. },
  2250. {
  2251. "name": "sebastian/diff",
  2252. "version": "1.4.1",
  2253. "version_normalized": "1.4.1.0",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/sebastianbergmann/diff.git",
  2257. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/diff/13edfd8706462032c2f52b4b862974dd46b71c9e.zip",
  2262. "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "php": ">=5.3.3"
  2267. },
  2268. "require-dev": {
  2269. "phpunit/phpunit": "~4.8"
  2270. },
  2271. "time": "2015-12-08 07:14:41",
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "1.4-dev"
  2276. }
  2277. },
  2278. "installation-source": "dist",
  2279. "autoload": {
  2280. "classmap": [
  2281. "src/"
  2282. ]
  2283. },
  2284. "notification-url": "https://packagist.org/downloads/",
  2285. "license": [
  2286. "BSD-3-Clause"
  2287. ],
  2288. "authors": [
  2289. {
  2290. "name": "Kore Nordmann",
  2291. "email": "mail@kore-nordmann.de"
  2292. },
  2293. {
  2294. "name": "Sebastian Bergmann",
  2295. "email": "sebastian@phpunit.de"
  2296. }
  2297. ],
  2298. "description": "Diff implementation",
  2299. "homepage": "https://github.com/sebastianbergmann/diff",
  2300. "keywords": [
  2301. "diff"
  2302. ]
  2303. },
  2304. {
  2305. "name": "sebastian/comparator",
  2306. "version": "1.2.0",
  2307. "version_normalized": "1.2.0.0",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/sebastianbergmann/comparator.git",
  2311. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/comparator/937efb279bd37a375bcadf584dec0726f84dbf22.zip",
  2316. "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": ">=5.3.3",
  2321. "sebastian/diff": "~1.2",
  2322. "sebastian/exporter": "~1.2"
  2323. },
  2324. "require-dev": {
  2325. "phpunit/phpunit": "~4.4"
  2326. },
  2327. "time": "2015-07-26 15:48:44",
  2328. "type": "library",
  2329. "extra": {
  2330. "branch-alias": {
  2331. "dev-master": "1.2.x-dev"
  2332. }
  2333. },
  2334. "installation-source": "dist",
  2335. "autoload": {
  2336. "classmap": [
  2337. "src/"
  2338. ]
  2339. },
  2340. "notification-url": "https://packagist.org/downloads/",
  2341. "license": [
  2342. "BSD-3-Clause"
  2343. ],
  2344. "authors": [
  2345. {
  2346. "name": "Jeff Welch",
  2347. "email": "whatthejeff@gmail.com"
  2348. },
  2349. {
  2350. "name": "Volker Dusch",
  2351. "email": "github@wallbash.com"
  2352. },
  2353. {
  2354. "name": "Bernhard Schussek",
  2355. "email": "bschussek@2bepublished.at"
  2356. },
  2357. {
  2358. "name": "Sebastian Bergmann",
  2359. "email": "sebastian@phpunit.de"
  2360. }
  2361. ],
  2362. "description": "Provides the functionality to compare PHP values for equality",
  2363. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  2364. "keywords": [
  2365. "comparator",
  2366. "compare",
  2367. "equality"
  2368. ]
  2369. },
  2370. {
  2371. "name": "phpunit/php-text-template",
  2372. "version": "1.2.1",
  2373. "version_normalized": "1.2.1.0",
  2374. "source": {
  2375. "type": "git",
  2376. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2377. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  2378. },
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-text-template/31f8b717e51d9a2afca6c9f046f5d69fc27c8686.zip",
  2382. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "php": ">=5.3.3"
  2387. },
  2388. "time": "2015-06-21 13:50:34",
  2389. "type": "library",
  2390. "installation-source": "dist",
  2391. "autoload": {
  2392. "classmap": [
  2393. "src/"
  2394. ]
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "BSD-3-Clause"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Sebastian Bergmann",
  2403. "email": "sebastian@phpunit.de",
  2404. "role": "lead"
  2405. }
  2406. ],
  2407. "description": "Simple template engine.",
  2408. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2409. "keywords": [
  2410. "template"
  2411. ]
  2412. },
  2413. {
  2414. "name": "doctrine/instantiator",
  2415. "version": "1.0.5",
  2416. "version_normalized": "1.0.5.0",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/doctrine/instantiator.git",
  2420. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://packagist.phpcomposer.com/files/doctrine/instantiator/8e884e78f9f0eb1329e445619e04456e64d8051d.zip",
  2425. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  2426. "shasum": ""
  2427. },
  2428. "require": {
  2429. "php": ">=5.3,<8.0-DEV"
  2430. },
  2431. "require-dev": {
  2432. "athletic/athletic": "~0.1.8",
  2433. "ext-pdo": "*",
  2434. "ext-phar": "*",
  2435. "phpunit/phpunit": "~4.0",
  2436. "squizlabs/php_codesniffer": "~2.0"
  2437. },
  2438. "time": "2015-06-14 21:17:01",
  2439. "type": "library",
  2440. "extra": {
  2441. "branch-alias": {
  2442. "dev-master": "1.0.x-dev"
  2443. }
  2444. },
  2445. "installation-source": "dist",
  2446. "autoload": {
  2447. "psr-4": {
  2448. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2449. }
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Marco Pivetta",
  2458. "email": "ocramius@gmail.com",
  2459. "homepage": "http://ocramius.github.com/"
  2460. }
  2461. ],
  2462. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2463. "homepage": "https://github.com/doctrine/instantiator",
  2464. "keywords": [
  2465. "constructor",
  2466. "instantiate"
  2467. ]
  2468. },
  2469. {
  2470. "name": "phpunit/phpunit-mock-objects",
  2471. "version": "2.3.8",
  2472. "version_normalized": "2.3.8.0",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  2476. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/phpunit-mock-objects/ac8e7a3db35738d56ee9a76e78a4e03d97628983.zip",
  2481. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "doctrine/instantiator": "^1.0.2",
  2486. "php": ">=5.3.3",
  2487. "phpunit/php-text-template": "~1.2",
  2488. "sebastian/exporter": "~1.2"
  2489. },
  2490. "require-dev": {
  2491. "phpunit/phpunit": "~4.4"
  2492. },
  2493. "suggest": {
  2494. "ext-soap": "*"
  2495. },
  2496. "time": "2015-10-02 06:51:40",
  2497. "type": "library",
  2498. "extra": {
  2499. "branch-alias": {
  2500. "dev-master": "2.3.x-dev"
  2501. }
  2502. },
  2503. "installation-source": "dist",
  2504. "autoload": {
  2505. "classmap": [
  2506. "src/"
  2507. ]
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "BSD-3-Clause"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Sebastian Bergmann",
  2516. "email": "sb@sebastian-bergmann.de",
  2517. "role": "lead"
  2518. }
  2519. ],
  2520. "description": "Mock Object library for PHPUnit",
  2521. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  2522. "keywords": [
  2523. "mock",
  2524. "xunit"
  2525. ]
  2526. },
  2527. {
  2528. "name": "phpunit/php-timer",
  2529. "version": "1.0.8",
  2530. "version_normalized": "1.0.8.0",
  2531. "source": {
  2532. "type": "git",
  2533. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2534. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260"
  2535. },
  2536. "dist": {
  2537. "type": "zip",
  2538. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-timer/38e9124049cf1a164f1e4537caf19c99bf1eb260.zip",
  2539. "reference": "38e9124049cf1a164f1e4537caf19c99bf1eb260",
  2540. "shasum": ""
  2541. },
  2542. "require": {
  2543. "php": ">=5.3.3"
  2544. },
  2545. "require-dev": {
  2546. "phpunit/phpunit": "~4|~5"
  2547. },
  2548. "time": "2016-05-12 18:03:57",
  2549. "type": "library",
  2550. "installation-source": "dist",
  2551. "autoload": {
  2552. "classmap": [
  2553. "src/"
  2554. ]
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "BSD-3-Clause"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Sebastian Bergmann",
  2563. "email": "sb@sebastian-bergmann.de",
  2564. "role": "lead"
  2565. }
  2566. ],
  2567. "description": "Utility class for timing",
  2568. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2569. "keywords": [
  2570. "timer"
  2571. ]
  2572. },
  2573. {
  2574. "name": "phpunit/php-file-iterator",
  2575. "version": "1.4.1",
  2576. "version_normalized": "1.4.1.0",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2580. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-file-iterator/6150bf2c35d3fc379e50c7602b75caceaa39dbf0.zip",
  2585. "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
  2586. "shasum": ""
  2587. },
  2588. "require": {
  2589. "php": ">=5.3.3"
  2590. },
  2591. "time": "2015-06-21 13:08:43",
  2592. "type": "library",
  2593. "extra": {
  2594. "branch-alias": {
  2595. "dev-master": "1.4.x-dev"
  2596. }
  2597. },
  2598. "installation-source": "dist",
  2599. "autoload": {
  2600. "classmap": [
  2601. "src/"
  2602. ]
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "BSD-3-Clause"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Sebastian Bergmann",
  2611. "email": "sb@sebastian-bergmann.de",
  2612. "role": "lead"
  2613. }
  2614. ],
  2615. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2616. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2617. "keywords": [
  2618. "filesystem",
  2619. "iterator"
  2620. ]
  2621. },
  2622. {
  2623. "name": "phpunit/php-code-coverage",
  2624. "version": "2.2.4",
  2625. "version_normalized": "2.2.4.0",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2629. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/php-code-coverage/eabf68b476ac7d0f73793aada060f1c1a9bf8979.zip",
  2634. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "php": ">=5.3.3",
  2639. "phpunit/php-file-iterator": "~1.3",
  2640. "phpunit/php-text-template": "~1.2",
  2641. "phpunit/php-token-stream": "~1.3",
  2642. "sebastian/environment": "^1.3.2",
  2643. "sebastian/version": "~1.0"
  2644. },
  2645. "require-dev": {
  2646. "ext-xdebug": ">=2.1.4",
  2647. "phpunit/phpunit": "~4"
  2648. },
  2649. "suggest": {
  2650. "ext-dom": "*",
  2651. "ext-xdebug": ">=2.2.1",
  2652. "ext-xmlwriter": "*"
  2653. },
  2654. "time": "2015-10-06 15:47:00",
  2655. "type": "library",
  2656. "extra": {
  2657. "branch-alias": {
  2658. "dev-master": "2.2.x-dev"
  2659. }
  2660. },
  2661. "installation-source": "dist",
  2662. "autoload": {
  2663. "classmap": [
  2664. "src/"
  2665. ]
  2666. },
  2667. "notification-url": "https://packagist.org/downloads/",
  2668. "license": [
  2669. "BSD-3-Clause"
  2670. ],
  2671. "authors": [
  2672. {
  2673. "name": "Sebastian Bergmann",
  2674. "email": "sb@sebastian-bergmann.de",
  2675. "role": "lead"
  2676. }
  2677. ],
  2678. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2679. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2680. "keywords": [
  2681. "coverage",
  2682. "testing",
  2683. "xunit"
  2684. ]
  2685. },
  2686. {
  2687. "name": "phpspec/prophecy",
  2688. "version": "v1.6.1",
  2689. "version_normalized": "1.6.1.0",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/phpspec/prophecy.git",
  2693. "reference": "58a8137754bc24b25740d4281399a4a3596058e0"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://packagist.phpcomposer.com/files/phpspec/prophecy/58a8137754bc24b25740d4281399a4a3596058e0.zip",
  2698. "reference": "58a8137754bc24b25740d4281399a4a3596058e0",
  2699. "shasum": ""
  2700. },
  2701. "require": {
  2702. "doctrine/instantiator": "^1.0.2",
  2703. "php": "^5.3|^7.0",
  2704. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2",
  2705. "sebastian/comparator": "^1.1",
  2706. "sebastian/recursion-context": "^1.0"
  2707. },
  2708. "require-dev": {
  2709. "phpspec/phpspec": "^2.0"
  2710. },
  2711. "time": "2016-06-07 08:13:47",
  2712. "type": "library",
  2713. "extra": {
  2714. "branch-alias": {
  2715. "dev-master": "1.6.x-dev"
  2716. }
  2717. },
  2718. "installation-source": "dist",
  2719. "autoload": {
  2720. "psr-0": {
  2721. "Prophecy\\": "src/"
  2722. }
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "MIT"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Konstantin Kudryashov",
  2731. "email": "ever.zet@gmail.com",
  2732. "homepage": "http://everzet.com"
  2733. },
  2734. {
  2735. "name": "Marcello Duarte",
  2736. "email": "marcello.duarte@gmail.com"
  2737. }
  2738. ],
  2739. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2740. "homepage": "https://github.com/phpspec/prophecy",
  2741. "keywords": [
  2742. "Double",
  2743. "Dummy",
  2744. "fake",
  2745. "mock",
  2746. "spy",
  2747. "stub"
  2748. ]
  2749. },
  2750. {
  2751. "name": "phpunit/phpunit",
  2752. "version": "4.8.27",
  2753. "version_normalized": "4.8.27.0",
  2754. "source": {
  2755. "type": "git",
  2756. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2757. "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90"
  2758. },
  2759. "dist": {
  2760. "type": "zip",
  2761. "url": "https://packagist.phpcomposer.com/files/sebastianbergmann/phpunit/c062dddcb68e44b563f66ee319ddae2b5a322a90.zip",
  2762. "reference": "c062dddcb68e44b563f66ee319ddae2b5a322a90",
  2763. "shasum": ""
  2764. },
  2765. "require": {
  2766. "ext-dom": "*",
  2767. "ext-json": "*",
  2768. "ext-pcre": "*",
  2769. "ext-reflection": "*",
  2770. "ext-spl": "*",
  2771. "php": ">=5.3.3",
  2772. "phpspec/prophecy": "^1.3.1",
  2773. "phpunit/php-code-coverage": "~2.1",
  2774. "phpunit/php-file-iterator": "~1.4",
  2775. "phpunit/php-text-template": "~1.2",
  2776. "phpunit/php-timer": "^1.0.6",
  2777. "phpunit/phpunit-mock-objects": "~2.3",
  2778. "sebastian/comparator": "~1.1",
  2779. "sebastian/diff": "~1.2",
  2780. "sebastian/environment": "~1.3",
  2781. "sebastian/exporter": "~1.2",
  2782. "sebastian/global-state": "~1.0",
  2783. "sebastian/version": "~1.0",
  2784. "symfony/yaml": "~2.1|~3.0"
  2785. },
  2786. "suggest": {
  2787. "phpunit/php-invoker": "~1.1"
  2788. },
  2789. "time": "2016-07-21 06:48:14",
  2790. "bin": [
  2791. "phpunit"
  2792. ],
  2793. "type": "library",
  2794. "extra": {
  2795. "branch-alias": {
  2796. "dev-master": "4.8.x-dev"
  2797. }
  2798. },
  2799. "installation-source": "dist",
  2800. "autoload": {
  2801. "classmap": [
  2802. "src/"
  2803. ]
  2804. },
  2805. "notification-url": "https://packagist.org/downloads/",
  2806. "license": [
  2807. "BSD-3-Clause"
  2808. ],
  2809. "authors": [
  2810. {
  2811. "name": "Sebastian Bergmann",
  2812. "email": "sebastian@phpunit.de",
  2813. "role": "lead"
  2814. }
  2815. ],
  2816. "description": "The PHP Unit Testing framework.",
  2817. "homepage": "https://phpunit.de/",
  2818. "keywords": [
  2819. "phpunit",
  2820. "testing",
  2821. "xunit"
  2822. ]
  2823. },
  2824. {
  2825. "name": "symfony/css-selector",
  2826. "version": "v3.0.9",
  2827. "version_normalized": "3.0.9.0",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/symfony/css-selector.git",
  2831. "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://packagist.phpcomposer.com/files/symfony/css-selector/b8999c1f33c224b2b66b38253f5e3a838d0d0115.zip",
  2836. "reference": "b8999c1f33c224b2b66b38253f5e3a838d0d0115",
  2837. "shasum": ""
  2838. },
  2839. "require": {
  2840. "php": ">=5.5.9"
  2841. },
  2842. "time": "2016-06-29 05:40:00",
  2843. "type": "library",
  2844. "extra": {
  2845. "branch-alias": {
  2846. "dev-master": "3.0-dev"
  2847. }
  2848. },
  2849. "installation-source": "dist",
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Symfony\\Component\\CssSelector\\": ""
  2853. },
  2854. "exclude-from-classmap": [
  2855. "/Tests/"
  2856. ]
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "Jean-François Simon",
  2865. "email": "jeanfrancois.simon@sensiolabs.com"
  2866. },
  2867. {
  2868. "name": "Fabien Potencier",
  2869. "email": "fabien@symfony.com"
  2870. },
  2871. {
  2872. "name": "Symfony Community",
  2873. "homepage": "https://symfony.com/contributors"
  2874. }
  2875. ],
  2876. "description": "Symfony CssSelector Component",
  2877. "homepage": "https://symfony.com"
  2878. },
  2879. {
  2880. "name": "symfony/dom-crawler",
  2881. "version": "v3.0.9",
  2882. "version_normalized": "3.0.9.0",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/symfony/dom-crawler.git",
  2886. "reference": "dff8fecf1f56990d88058e3a1885c2a5f1b8e970"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://packagist.phpcomposer.com/files/symfony/dom-crawler/dff8fecf1f56990d88058e3a1885c2a5f1b8e970.zip",
  2891. "reference": "dff8fecf1f56990d88058e3a1885c2a5f1b8e970",
  2892. "shasum": ""
  2893. },
  2894. "require": {
  2895. "php": ">=5.5.9",
  2896. "symfony/polyfill-mbstring": "~1.0"
  2897. },
  2898. "require-dev": {
  2899. "symfony/css-selector": "~2.8|~3.0"
  2900. },
  2901. "suggest": {
  2902. "symfony/css-selector": ""
  2903. },
  2904. "time": "2016-07-30 07:22:48",
  2905. "type": "library",
  2906. "extra": {
  2907. "branch-alias": {
  2908. "dev-master": "3.0-dev"
  2909. }
  2910. },
  2911. "installation-source": "dist",
  2912. "autoload": {
  2913. "psr-4": {
  2914. "Symfony\\Component\\DomCrawler\\": ""
  2915. },
  2916. "exclude-from-classmap": [
  2917. "/Tests/"
  2918. ]
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Fabien Potencier",
  2927. "email": "fabien@symfony.com"
  2928. },
  2929. {
  2930. "name": "Symfony Community",
  2931. "homepage": "https://symfony.com/contributors"
  2932. }
  2933. ],
  2934. "description": "Symfony DomCrawler Component",
  2935. "homepage": "https://symfony.com"
  2936. },
  2937. {
  2938. "name": "vlucas/phpdotenv",
  2939. "version": "v2.4.0",
  2940. "version_normalized": "2.4.0.0",
  2941. "source": {
  2942. "type": "git",
  2943. "url": "https://github.com/vlucas/phpdotenv.git",
  2944. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c"
  2945. },
  2946. "dist": {
  2947. "type": "zip",
  2948. "url": "https://packagist.phpcomposer.com/files/vlucas/phpdotenv/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c.zip",
  2949. "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c",
  2950. "shasum": ""
  2951. },
  2952. "require": {
  2953. "php": ">=5.3.9"
  2954. },
  2955. "require-dev": {
  2956. "phpunit/phpunit": "^4.8 || ^5.0"
  2957. },
  2958. "time": "2016-09-01 10:05:43",
  2959. "type": "library",
  2960. "extra": {
  2961. "branch-alias": {
  2962. "dev-master": "2.4-dev"
  2963. }
  2964. },
  2965. "installation-source": "dist",
  2966. "autoload": {
  2967. "psr-4": {
  2968. "Dotenv\\": "src/"
  2969. }
  2970. },
  2971. "notification-url": "https://packagist.org/downloads/",
  2972. "license": [
  2973. "BSD-3-Clause-Attribution"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "Vance Lucas",
  2978. "email": "vance@vancelucas.com",
  2979. "homepage": "http://www.vancelucas.com"
  2980. }
  2981. ],
  2982. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  2983. "keywords": [
  2984. "dotenv",
  2985. "env",
  2986. "environment"
  2987. ]
  2988. },
  2989. {
  2990. "name": "symfony/event-dispatcher",
  2991. "version": "v3.1.4",
  2992. "version_normalized": "3.1.4.0",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/symfony/event-dispatcher.git",
  2996. "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://packagist.phpcomposer.com/files/symfony/event-dispatcher/c0c00c80b3a69132c4e55c3e7db32b4a387615e5.zip",
  3001. "reference": "c0c00c80b3a69132c4e55c3e7db32b4a387615e5",
  3002. "shasum": ""
  3003. },
  3004. "require": {
  3005. "php": ">=5.5.9"
  3006. },
  3007. "require-dev": {
  3008. "psr/log": "~1.0",
  3009. "symfony/config": "~2.8|~3.0",
  3010. "symfony/dependency-injection": "~2.8|~3.0",
  3011. "symfony/expression-language": "~2.8|~3.0",
  3012. "symfony/stopwatch": "~2.8|~3.0"
  3013. },
  3014. "suggest": {
  3015. "symfony/dependency-injection": "",
  3016. "symfony/http-kernel": ""
  3017. },
  3018. "time": "2016-07-19 10:45:57",
  3019. "type": "library",
  3020. "extra": {
  3021. "branch-alias": {
  3022. "dev-master": "3.1-dev"
  3023. }
  3024. },
  3025. "installation-source": "dist",
  3026. "autoload": {
  3027. "psr-4": {
  3028. "Symfony\\Component\\EventDispatcher\\": ""
  3029. },
  3030. "exclude-from-classmap": [
  3031. "/Tests/"
  3032. ]
  3033. },
  3034. "notification-url": "https://packagist.org/downloads/",
  3035. "license": [
  3036. "MIT"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "Fabien Potencier",
  3041. "email": "fabien@symfony.com"
  3042. },
  3043. {
  3044. "name": "Symfony Community",
  3045. "homepage": "https://symfony.com/contributors"
  3046. }
  3047. ],
  3048. "description": "Symfony EventDispatcher Component",
  3049. "homepage": "https://symfony.com"
  3050. },
  3051. {
  3052. "name": "psr/log",
  3053. "version": "1.0.1",
  3054. "version_normalized": "1.0.1.0",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/php-fig/log.git",
  3058. "reference": "5277094ed527a1c4477177d102fe4c53551953e0"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://packagist.phpcomposer.com/files/php-fig/log/5277094ed527a1c4477177d102fe4c53551953e0.zip",
  3063. "reference": "5277094ed527a1c4477177d102fe4c53551953e0",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "php": ">=5.3.0"
  3068. },
  3069. "time": "2016-09-19 16:02:08",
  3070. "type": "library",
  3071. "extra": {
  3072. "branch-alias": {
  3073. "dev-master": "1.0.x-dev"
  3074. }
  3075. },
  3076. "installation-source": "dist",
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Psr\\Log\\": "Psr/Log/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "authors": [
  3087. {
  3088. "name": "PHP-FIG",
  3089. "homepage": "http://www.php-fig.org/"
  3090. }
  3091. ],
  3092. "description": "Common interface for logging libraries",
  3093. "homepage": "https://github.com/php-fig/log",
  3094. "keywords": [
  3095. "log",
  3096. "psr",
  3097. "psr-3"
  3098. ]
  3099. },
  3100. {
  3101. "name": "nikic/php-parser",
  3102. "version": "v2.1.1",
  3103. "version_normalized": "2.1.1.0",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/nikic/PHP-Parser.git",
  3107. "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://packagist.phpcomposer.com/files/nikic/PHP-Parser/4dd659edadffdc2143e4753df655d866dbfeedf0.zip",
  3112. "reference": "4dd659edadffdc2143e4753df655d866dbfeedf0",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "ext-tokenizer": "*",
  3117. "php": ">=5.4"
  3118. },
  3119. "require-dev": {
  3120. "phpunit/phpunit": "~4.0"
  3121. },
  3122. "time": "2016-09-16 12:04:44",
  3123. "bin": [
  3124. "bin/php-parse"
  3125. ],
  3126. "type": "library",
  3127. "extra": {
  3128. "branch-alias": {
  3129. "dev-master": "2.1-dev"
  3130. }
  3131. },
  3132. "installation-source": "dist",
  3133. "autoload": {
  3134. "psr-4": {
  3135. "PhpParser\\": "lib/PhpParser"
  3136. }
  3137. },
  3138. "notification-url": "https://packagist.org/downloads/",
  3139. "license": [
  3140. "BSD-3-Clause"
  3141. ],
  3142. "authors": [
  3143. {
  3144. "name": "Nikita Popov"
  3145. }
  3146. ],
  3147. "description": "A PHP parser written in PHP",
  3148. "keywords": [
  3149. "parser",
  3150. "php"
  3151. ]
  3152. },
  3153. {
  3154. "name": "laravel/framework",
  3155. "version": "v5.2.45",
  3156. "version_normalized": "5.2.45.0",
  3157. "source": {
  3158. "type": "git",
  3159. "url": "https://github.com/laravel/framework.git",
  3160. "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1"
  3161. },
  3162. "dist": {
  3163. "type": "zip",
  3164. "url": "https://packagist.phpcomposer.com/files/laravel/framework/2a79f920d5584ec6df7cf996d922a742d11095d1.zip",
  3165. "reference": "2a79f920d5584ec6df7cf996d922a742d11095d1",
  3166. "shasum": ""
  3167. },
  3168. "require": {
  3169. "classpreloader/classpreloader": "~3.0",
  3170. "doctrine/inflector": "~1.0",
  3171. "ext-mbstring": "*",
  3172. "ext-openssl": "*",
  3173. "jeremeamia/superclosure": "~2.2",
  3174. "league/flysystem": "~1.0",
  3175. "monolog/monolog": "~1.11",
  3176. "mtdowling/cron-expression": "~1.0",
  3177. "nesbot/carbon": "~1.20",
  3178. "paragonie/random_compat": "~1.4",
  3179. "php": ">=5.5.9",
  3180. "psy/psysh": "0.7.*",
  3181. "swiftmailer/swiftmailer": "~5.1",
  3182. "symfony/console": "2.8.*|3.0.*",
  3183. "symfony/debug": "2.8.*|3.0.*",
  3184. "symfony/finder": "2.8.*|3.0.*",
  3185. "symfony/http-foundation": "2.8.*|3.0.*",
  3186. "symfony/http-kernel": "2.8.*|3.0.*",
  3187. "symfony/polyfill-php56": "~1.0",
  3188. "symfony/process": "2.8.*|3.0.*",
  3189. "symfony/routing": "2.8.*|3.0.*",
  3190. "symfony/translation": "2.8.*|3.0.*",
  3191. "symfony/var-dumper": "2.8.*|3.0.*",
  3192. "vlucas/phpdotenv": "~2.2"
  3193. },
  3194. "replace": {
  3195. "illuminate/auth": "self.version",
  3196. "illuminate/broadcasting": "self.version",
  3197. "illuminate/bus": "self.version",
  3198. "illuminate/cache": "self.version",
  3199. "illuminate/config": "self.version",
  3200. "illuminate/console": "self.version",
  3201. "illuminate/container": "self.version",
  3202. "illuminate/contracts": "self.version",
  3203. "illuminate/cookie": "self.version",
  3204. "illuminate/database": "self.version",
  3205. "illuminate/encryption": "self.version",
  3206. "illuminate/events": "self.version",
  3207. "illuminate/exception": "self.version",
  3208. "illuminate/filesystem": "self.version",
  3209. "illuminate/hashing": "self.version",
  3210. "illuminate/http": "self.version",
  3211. "illuminate/log": "self.version",
  3212. "illuminate/mail": "self.version",
  3213. "illuminate/pagination": "self.version",
  3214. "illuminate/pipeline": "self.version",
  3215. "illuminate/queue": "self.version",
  3216. "illuminate/redis": "self.version",
  3217. "illuminate/routing": "self.version",
  3218. "illuminate/session": "self.version",
  3219. "illuminate/support": "self.version",
  3220. "illuminate/translation": "self.version",
  3221. "illuminate/validation": "self.version",
  3222. "illuminate/view": "self.version",
  3223. "tightenco/collect": "self.version"
  3224. },
  3225. "require-dev": {
  3226. "aws/aws-sdk-php": "~3.0",
  3227. "mockery/mockery": "~0.9.4",
  3228. "pda/pheanstalk": "~3.0",
  3229. "phpunit/phpunit": "~4.1",
  3230. "predis/predis": "~1.0",
  3231. "symfony/css-selector": "2.8.*|3.0.*",
  3232. "symfony/dom-crawler": "2.8.*|3.0.*"
  3233. },
  3234. "suggest": {
  3235. "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
  3236. "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).",
  3237. "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
  3238. "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~5.3|~6.0).",
  3239. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  3240. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
  3241. "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
  3242. "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
  3243. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).",
  3244. "symfony/css-selector": "Required to use some of the crawler integration testing tools (2.8.*|3.0.*).",
  3245. "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (2.8.*|3.0.*).",
  3246. "symfony/psr-http-message-bridge": "Required to use psr7 bridging features (0.2.*)."
  3247. },
  3248. "time": "2016-08-26 11:44:52",
  3249. "type": "library",
  3250. "extra": {
  3251. "branch-alias": {
  3252. "dev-master": "5.2-dev"
  3253. }
  3254. },
  3255. "installation-source": "dist",
  3256. "autoload": {
  3257. "classmap": [
  3258. "src/Illuminate/Queue/IlluminateQueueClosure.php"
  3259. ],
  3260. "files": [
  3261. "src/Illuminate/Foundation/helpers.php",
  3262. "src/Illuminate/Support/helpers.php"
  3263. ],
  3264. "psr-4": {
  3265. "Illuminate\\": "src/Illuminate/"
  3266. }
  3267. },
  3268. "notification-url": "https://packagist.org/downloads/",
  3269. "license": [
  3270. "MIT"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Taylor Otwell",
  3275. "email": "taylorotwell@gmail.com"
  3276. }
  3277. ],
  3278. "description": "The Laravel Framework.",
  3279. "homepage": "http://laravel.com",
  3280. "keywords": [
  3281. "framework",
  3282. "laravel"
  3283. ]
  3284. },
  3285. {
  3286. "name": "symfony/yaml",
  3287. "version": "v3.1.4",
  3288. "version_normalized": "3.1.4.0",
  3289. "source": {
  3290. "type": "git",
  3291. "url": "https://github.com/symfony/yaml.git",
  3292. "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d"
  3293. },
  3294. "dist": {
  3295. "type": "zip",
  3296. "url": "https://packagist.phpcomposer.com/files/symfony/yaml/f291ed25eb1435bddbe8a96caaef16469c2a092d.zip",
  3297. "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d",
  3298. "shasum": ""
  3299. },
  3300. "require": {
  3301. "php": ">=5.5.9"
  3302. },
  3303. "time": "2016-09-02 02:12:52",
  3304. "type": "library",
  3305. "extra": {
  3306. "branch-alias": {
  3307. "dev-master": "3.1-dev"
  3308. }
  3309. },
  3310. "installation-source": "dist",
  3311. "autoload": {
  3312. "psr-4": {
  3313. "Symfony\\Component\\Yaml\\": ""
  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 Yaml Component",
  3334. "homepage": "https://symfony.com"
  3335. },
  3336. {
  3337. "name": "illuminate/contracts",
  3338. "version": "v5.2.43",
  3339. "version_normalized": "5.2.43.0",
  3340. "source": {
  3341. "type": "git",
  3342. "url": "https://github.com/illuminate/contracts.git",
  3343. "reference": "22bde7b048a33c702d9737fc1446234fff9b1363"
  3344. },
  3345. "dist": {
  3346. "type": "zip",
  3347. "url": "https://packagist.phpcomposer.com/files/illuminate/contracts/22bde7b048a33c702d9737fc1446234fff9b1363.zip",
  3348. "reference": "22bde7b048a33c702d9737fc1446234fff9b1363",
  3349. "shasum": ""
  3350. },
  3351. "require": {
  3352. "php": ">=5.5.9"
  3353. },
  3354. "time": "2016-08-08 11:46:08",
  3355. "type": "library",
  3356. "extra": {
  3357. "branch-alias": {
  3358. "dev-master": "5.2-dev"
  3359. }
  3360. },
  3361. "installation-source": "dist",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Illuminate\\Contracts\\": ""
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Taylor Otwell",
  3374. "email": "taylor@laravel.com"
  3375. }
  3376. ],
  3377. "description": "The Illuminate Contracts package.",
  3378. "homepage": "http://laravel.com"
  3379. },
  3380. {
  3381. "name": "illuminate/support",
  3382. "version": "v5.2.43",
  3383. "version_normalized": "5.2.43.0",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://github.com/illuminate/support.git",
  3387. "reference": "510230ab62a7d85dc70203f4fdca6fb71a19e08a"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://packagist.phpcomposer.com/files/illuminate/support/510230ab62a7d85dc70203f4fdca6fb71a19e08a.zip",
  3392. "reference": "510230ab62a7d85dc70203f4fdca6fb71a19e08a",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "doctrine/inflector": "~1.0",
  3397. "ext-mbstring": "*",
  3398. "illuminate/contracts": "5.2.*",
  3399. "paragonie/random_compat": "~1.4",
  3400. "php": ">=5.5.9"
  3401. },
  3402. "replace": {
  3403. "tightenco/collect": "self.version"
  3404. },
  3405. "suggest": {
  3406. "illuminate/filesystem": "Required to use the composer class (5.2.*).",
  3407. "jeremeamia/superclosure": "Required to be able to serialize closures (~2.2).",
  3408. "symfony/polyfill-php56": "Required to use the hash_equals function on PHP 5.5 (~1.0).",
  3409. "symfony/process": "Required to use the composer class (2.8.*|3.0.*).",
  3410. "symfony/var-dumper": "Improves the dd function (2.8.*|3.0.*)."
  3411. },
  3412. "time": "2016-08-05 14:49:58",
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "5.2-dev"
  3417. }
  3418. },
  3419. "installation-source": "dist",
  3420. "autoload": {
  3421. "psr-4": {
  3422. "Illuminate\\Support\\": ""
  3423. },
  3424. "files": [
  3425. "helpers.php"
  3426. ]
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "Taylor Otwell",
  3435. "email": "taylor@laravel.com"
  3436. }
  3437. ],
  3438. "description": "The Illuminate Support package.",
  3439. "homepage": "http://laravel.com"
  3440. },
  3441. {
  3442. "name": "illuminate/console",
  3443. "version": "v5.2.43",
  3444. "version_normalized": "5.2.43.0",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/illuminate/console.git",
  3448. "reference": "c6d838c6f9ac3f1aec28cde93bf613283153785e"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://packagist.phpcomposer.com/files/illuminate/console/c6d838c6f9ac3f1aec28cde93bf613283153785e.zip",
  3453. "reference": "c6d838c6f9ac3f1aec28cde93bf613283153785e",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "illuminate/contracts": "5.2.*",
  3458. "illuminate/support": "5.2.*",
  3459. "nesbot/carbon": "~1.20",
  3460. "php": ">=5.5.9",
  3461. "symfony/console": "2.8.*|3.0.*"
  3462. },
  3463. "suggest": {
  3464. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (~5.3|~6.0).",
  3465. "mtdowling/cron-expression": "Required to use scheduling component (~1.0).",
  3466. "symfony/process": "Required to use scheduling component (2.8.*|3.0.*)."
  3467. },
  3468. "time": "2016-08-01 13:49:14",
  3469. "type": "library",
  3470. "extra": {
  3471. "branch-alias": {
  3472. "dev-master": "5.2-dev"
  3473. }
  3474. },
  3475. "installation-source": "dist",
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Illuminate\\Console\\": ""
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "authors": [
  3486. {
  3487. "name": "Taylor Otwell",
  3488. "email": "taylor@laravel.com"
  3489. }
  3490. ],
  3491. "description": "The Illuminate Console package.",
  3492. "homepage": "http://laravel.com"
  3493. },
  3494. {
  3495. "name": "tijsverkoyen/css-to-inline-styles",
  3496. "version": "1.5.5",
  3497. "version_normalized": "1.5.5.0",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  3501. "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://packagist.phpcomposer.com/files/tijsverkoyen/CssToInlineStyles/9753fc340726e327e4d48b7c0604f85475ae0bc3.zip",
  3506. "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=5.3.0",
  3511. "symfony/css-selector": "~2.1|~3.0"
  3512. },
  3513. "require-dev": {
  3514. "phpunit/phpunit": "~4.0"
  3515. },
  3516. "time": "2015-12-08 16:14:14",
  3517. "type": "library",
  3518. "extra": {
  3519. "branch-alias": {
  3520. "dev-master": "1.5.x-dev"
  3521. }
  3522. },
  3523. "installation-source": "dist",
  3524. "autoload": {
  3525. "psr-4": {
  3526. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "BSD"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "Tijs Verkoyen",
  3536. "email": "css_to_inline_styles@verkoyen.eu",
  3537. "role": "Developer"
  3538. }
  3539. ],
  3540. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  3541. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles"
  3542. },
  3543. {
  3544. "name": "phpoffice/phpexcel",
  3545. "version": "1.8.1",
  3546. "version_normalized": "1.8.1.0",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/PHPOffice/PHPExcel.git",
  3550. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://packagist.phpcomposer.com/files/PHPOffice/PHPExcel/372c7cbb695a6f6f1e62649381aeaa37e7e70b32.zip",
  3555. "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "ext-xml": "*",
  3560. "ext-xmlwriter": "*",
  3561. "php": ">=5.2.0"
  3562. },
  3563. "time": "2015-05-01 07:00:55",
  3564. "type": "library",
  3565. "installation-source": "dist",
  3566. "autoload": {
  3567. "psr-0": {
  3568. "PHPExcel": "Classes/"
  3569. }
  3570. },
  3571. "notification-url": "https://packagist.org/downloads/",
  3572. "license": [
  3573. "LGPL"
  3574. ],
  3575. "authors": [
  3576. {
  3577. "name": "Maarten Balliauw",
  3578. "homepage": "http://blog.maartenballiauw.be"
  3579. },
  3580. {
  3581. "name": "Mark Baker"
  3582. },
  3583. {
  3584. "name": "Franck Lefevre",
  3585. "homepage": "http://blog.rootslabs.net"
  3586. },
  3587. {
  3588. "name": "Erik Tilt"
  3589. }
  3590. ],
  3591. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3592. "homepage": "http://phpexcel.codeplex.com",
  3593. "keywords": [
  3594. "OpenXML",
  3595. "excel",
  3596. "php",
  3597. "spreadsheet",
  3598. "xls",
  3599. "xlsx"
  3600. ]
  3601. },
  3602. {
  3603. "name": "illuminate/filesystem",
  3604. "version": "v5.2.43",
  3605. "version_normalized": "5.2.43.0",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/illuminate/filesystem.git",
  3609. "reference": "df115e3cc4444f340064a3e20e16eed9c25e8263"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://packagist.phpcomposer.com/files/illuminate/filesystem/df115e3cc4444f340064a3e20e16eed9c25e8263.zip",
  3614. "reference": "df115e3cc4444f340064a3e20e16eed9c25e8263",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "illuminate/contracts": "5.2.*",
  3619. "illuminate/support": "5.2.*",
  3620. "php": ">=5.5.9",
  3621. "symfony/finder": "2.8.*|3.0.*"
  3622. },
  3623. "suggest": {
  3624. "league/flysystem": "Required to use the Flysystem local and FTP drivers (~1.0).",
  3625. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
  3626. "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0)."
  3627. },
  3628. "time": "2016-08-01 13:49:14",
  3629. "type": "library",
  3630. "extra": {
  3631. "branch-alias": {
  3632. "dev-master": "5.2-dev"
  3633. }
  3634. },
  3635. "installation-source": "dist",
  3636. "autoload": {
  3637. "psr-4": {
  3638. "Illuminate\\Filesystem\\": ""
  3639. }
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "MIT"
  3644. ],
  3645. "authors": [
  3646. {
  3647. "name": "Taylor Otwell",
  3648. "email": "taylor@laravel.com"
  3649. }
  3650. ],
  3651. "description": "The Illuminate Filesystem package.",
  3652. "homepage": "http://laravel.com"
  3653. },
  3654. {
  3655. "name": "illuminate/config",
  3656. "version": "v5.2.43",
  3657. "version_normalized": "5.2.43.0",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/illuminate/config.git",
  3661. "reference": "2db869c5b5a675cece410a0d0bc634dba0f69998"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://packagist.phpcomposer.com/files/illuminate/config/2db869c5b5a675cece410a0d0bc634dba0f69998.zip",
  3666. "reference": "2db869c5b5a675cece410a0d0bc634dba0f69998",
  3667. "shasum": ""
  3668. },
  3669. "require": {
  3670. "illuminate/contracts": "5.2.*",
  3671. "illuminate/filesystem": "5.2.*",
  3672. "illuminate/support": "5.2.*",
  3673. "php": ">=5.5.9"
  3674. },
  3675. "time": "2016-08-01 13:49:14",
  3676. "type": "library",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-master": "5.2-dev"
  3680. }
  3681. },
  3682. "installation-source": "dist",
  3683. "autoload": {
  3684. "psr-4": {
  3685. "Illuminate\\Config\\": ""
  3686. }
  3687. },
  3688. "notification-url": "https://packagist.org/downloads/",
  3689. "license": [
  3690. "MIT"
  3691. ],
  3692. "authors": [
  3693. {
  3694. "name": "Taylor Otwell",
  3695. "email": "taylor@laravel.com"
  3696. }
  3697. ],
  3698. "description": "The Illuminate Config package.",
  3699. "homepage": "http://laravel.com"
  3700. },
  3701. {
  3702. "name": "illuminate/cache",
  3703. "version": "v5.2.43",
  3704. "version_normalized": "5.2.43.0",
  3705. "source": {
  3706. "type": "git",
  3707. "url": "https://github.com/illuminate/cache.git",
  3708. "reference": "8e506168a3b965b17905e0ac03949a45c488df23"
  3709. },
  3710. "dist": {
  3711. "type": "zip",
  3712. "url": "https://packagist.phpcomposer.com/files/illuminate/cache/8e506168a3b965b17905e0ac03949a45c488df23.zip",
  3713. "reference": "8e506168a3b965b17905e0ac03949a45c488df23",
  3714. "shasum": ""
  3715. },
  3716. "require": {
  3717. "illuminate/contracts": "5.2.*",
  3718. "illuminate/support": "5.2.*",
  3719. "nesbot/carbon": "~1.20",
  3720. "php": ">=5.5.9"
  3721. },
  3722. "suggest": {
  3723. "illuminate/database": "Required to use the database cache driver (5.2.*).",
  3724. "illuminate/filesystem": "Required to use the file cache driver (5.2.*).",
  3725. "illuminate/redis": "Required to use the redis cache driver (5.2.*)."
  3726. },
  3727. "time": "2016-08-04 13:37:58",
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "5.2-dev"
  3732. }
  3733. },
  3734. "installation-source": "dist",
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Illuminate\\Cache\\": ""
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "authors": [
  3745. {
  3746. "name": "Taylor Otwell",
  3747. "email": "taylor@laravel.com"
  3748. }
  3749. ],
  3750. "description": "The Illuminate Cache package.",
  3751. "homepage": "http://laravel.com"
  3752. },
  3753. {
  3754. "name": "maatwebsite/excel",
  3755. "version": "2.1.6",
  3756. "version_normalized": "2.1.6.0",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://github.com/Maatwebsite/Laravel-Excel.git",
  3760. "reference": "700eba02f76f2971c81726a4f6a04121c1977e64"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://packagist.phpcomposer.com/files/Maatwebsite/Laravel-Excel/700eba02f76f2971c81726a4f6a04121c1977e64.zip",
  3765. "reference": "700eba02f76f2971c81726a4f6a04121c1977e64",
  3766. "shasum": ""
  3767. },
  3768. "require": {
  3769. "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*",
  3770. "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*",
  3771. "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*",
  3772. "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*",
  3773. "nesbot/carbon": "~1.0",
  3774. "php": ">=5.5",
  3775. "phpoffice/phpexcel": "1.8.*",
  3776. "tijsverkoyen/css-to-inline-styles": "~1.5"
  3777. },
  3778. "require-dev": {
  3779. "mockery/mockery": "~0.9",
  3780. "orchestra/testbench": "3.1.*",
  3781. "phpseclib/phpseclib": "~1.0",
  3782. "phpunit/phpunit": "~4.0"
  3783. },
  3784. "suggest": {
  3785. "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*",
  3786. "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*",
  3787. "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*",
  3788. "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*"
  3789. },
  3790. "time": "2016-09-15 21:03:21",
  3791. "type": "library",
  3792. "installation-source": "dist",
  3793. "autoload": {
  3794. "classmap": [
  3795. "src/Maatwebsite/Excel"
  3796. ],
  3797. "psr-0": {
  3798. "Maatwebsite\\Excel\\": "src/"
  3799. }
  3800. },
  3801. "notification-url": "https://packagist.org/downloads/",
  3802. "license": [
  3803. "LGPL"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "Maatwebsite.nl",
  3808. "email": "patrick@maatwebsite.nl"
  3809. }
  3810. ],
  3811. "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel",
  3812. "keywords": [
  3813. "PHPExcel",
  3814. "batch",
  3815. "csv",
  3816. "excel",
  3817. "export",
  3818. "import",
  3819. "laravel"
  3820. ]
  3821. }
  3822. ]