From 79d107a816b85193e3a13b18ea33ce24962b374f Mon Sep 17 00:00:00 2001 From: "Olivier M. Mukadi" Date: Fri, 10 May 2019 12:27:55 +0100 Subject: [PATCH 001/394] Support mukadi/wordpress-bundle v1.2.0 --- .../1.2/config/packages/mukadi_wordpress.yaml | 3 ++ mukadi/wordpress-bundle/1.2/manifest.json | 35 +++++++++++++ mukadi/wordpress-bundle/1.2/post-install.txt | 9 ++++ mukadi/wordpress-bundle/1.2/public/.htaccess | 10 ++++ .../1.2/public/mu-plugins/symfony-bridge.php | 28 +++++++++++ .../1.2/public/plugins/index.php | 2 + .../1.2/public/themes/wp-blank/footer.php | 3 ++ .../1.2/public/themes/wp-blank/functions.php | 46 ++++++++++++++++++ .../1.2/public/themes/wp-blank/header.php | 14 ++++++ .../1.2/public/themes/wp-blank/index.php | 19 ++++++++ .../1.2/public/themes/wp-blank/screenshot.png | Bin 0 -> 30089 bytes .../1.2/public/themes/wp-blank/style.css | 7 +++ .../wordpress-bundle/1.2/public/wp-config.php | 17 +++++++ .../wordpress-bundle/1.2/sf-wp-bootstrap.php | 40 +++++++++++++++ 14 files changed, 233 insertions(+) create mode 100644 mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml create mode 100644 mukadi/wordpress-bundle/1.2/manifest.json create mode 100644 mukadi/wordpress-bundle/1.2/post-install.txt create mode 100644 mukadi/wordpress-bundle/1.2/public/.htaccess create mode 100644 mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php create mode 100644 mukadi/wordpress-bundle/1.2/public/plugins/index.php create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/footer.php create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/header.php create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/screenshot.png create mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/style.css create mode 100644 mukadi/wordpress-bundle/1.2/public/wp-config.php create mode 100644 mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php diff --git a/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml b/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml new file mode 100644 index 00000000..020d6781 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml @@ -0,0 +1,3 @@ +mukadi_wordpress: + table_prefix: "%env(WP_PREFIX)%" + wordpress_directory: '%kernel.project_dir%/public/%env(WP_DIR)%' diff --git a/mukadi/wordpress-bundle/1.2/manifest.json b/mukadi/wordpress-bundle/1.2/manifest.json new file mode 100644 index 00000000..d9ed6f44 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/manifest.json @@ -0,0 +1,35 @@ +{ + "bundles": { + "Mukadi\\WordpressBundle\\MukadiWordpressBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%", + "sf-wp-bootstrap.php": "sf-wp-bootstrap.php" + }, + "copy-from-package": { + "wp-cli.yml": "wp-cli.yml" + }, + "env": { + "WP_PREFIX": "wp_", + "WP_THEME": "wp-blank", + "WP_DIR": "wp", + "AUTH_KEY": "%generate(secret)%", + "SECURE_AUTH_KEY": "%generate(secret)%", + "LOGGED_IN_KEY": "%generate(secret)%", + "NONCE_KEY": "%generate(secret)%", + "AUTH_SALT": "%generate(secret)%", + "SECURE_AUTH_SALT": "%generate(secret)%", + "LOGGED_IN_SALT": "%generate(secret)%", + "NONCE_SALT": "%generate(secret)%" + }, + "gitignore": [ + "/public/wp/", + "/public/upgrade/", + "/public/uploads/", + "/public/languages/", + "/public/mu-plugins/", + "/public/plugins/", + "/public/themes/" + ] +} diff --git a/mukadi/wordpress-bundle/1.2/post-install.txt b/mukadi/wordpress-bundle/1.2/post-install.txt new file mode 100644 index 00000000..556b154b --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/post-install.txt @@ -0,0 +1,9 @@ + + What's next? + + + * update your 'public/index.php' file accordingly to the 'sf-wp-bootstrap.php' file in the root directory. + * Configure doctrine/dbal to ignore custom wordpress tables (such as tables generated by plugins) + * Add the WordpressBundle routing file in your `config/routes.yaml`, after your custom routes to catch all Wordpress routes. + + * Read the documentation at https://github.com/mbo2olivier/mukadi-wordpress-bundle diff --git a/mukadi/wordpress-bundle/1.2/public/.htaccess b/mukadi/wordpress-bundle/1.2/public/.htaccess new file mode 100644 index 00000000..75662867 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/public/.htaccess @@ -0,0 +1,10 @@ +# BEGIN WordPress + + RewriteEngine On + RewriteBase / + RewriteRule ^index\.php$ - [L] + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule . /index.php [L] + +# END WordPress diff --git a/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php b/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php new file mode 100644 index 00000000..e1185d32 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php @@ -0,0 +1,28 @@ +dispatch($name, $event); +} diff --git a/mukadi/wordpress-bundle/1.2/public/plugins/index.php b/mukadi/wordpress-bundle/1.2/public/plugins/index.php new file mode 100644 index 00000000..5b994538 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/public/plugins/index.php @@ -0,0 +1,2 @@ + + + diff --git a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php new file mode 100644 index 00000000..aaf1f9f3 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php @@ -0,0 +1,46 @@ + +> + + + + + +> + +
+ +
diff --git a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php new file mode 100644 index 00000000..74870a14 --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php @@ -0,0 +1,19 @@ + + +
+ +
+
+

+
+ + +
+ +
+

Nothing to see.

+
+ +
+ +V_hzb4DA1y%6e#YbxI=;B?hZwRyK5=Mt+=~OaDoIW?ocGS6!%bE6DGfR zKFojp*SprNcV@oKhvc&EJ=}ZlK6{_N_wzgnS5}n5!g!AX006LLq`#;F0M8r&fTxM* zPf=%v85MF-hgXi$IxYYJCf+}vCxGj;c_v@MGKn4p5Nh~fKnp8}iNw(FfSWaFIhZsmDa{RG-C^w-JK z94cJjUYCiHz5Nq3(A&Sh#rioAgW3`B2EE>l!UaL~1aRXoD9A+l3#|k2#B&-G9q>yb z*s0A&`y zSGs_mX~4Ivn>3#%0KG&Cf+x9gfRA|QVP6220)Wa1%?JsA_9p; z8c@>&_%;3pvkrj%8t_RaESLfC+z0S=kc!F^@FNX?FL|aVc*<1uW|t9VskA!57HU3; zKs|I8Cp0ZBRx7QA?LAj$>Dik8{UB zu#H#_I$u6gnwV@Nw~FnBQ5H1J~sk# z_ZPL!9sjY7MBdMqg@x^{t$EpAF+Jm9Ek7iv+vt}T!uHl*@ZtLMPsavzAiF`J)bpD^ z-J=)sMIR>OU;Qvy-ieiZXu^DaAf2Y{l`(12X2joA!F7uHk{)%=UPKu#7SGT}Gxcb; zvBrG=On8k8P-89p#3zoW)WG!Fl^oq0ZP#BL*8sp7)S+vJ9{t%j%b@iMkH-@cgj6mK z;G2a^yb}Om_=TEPeYjp^0387Mk{ifaBT917^^W=1%MV>Imb)+?zH(V)P+nHKdGRfis^;Ie)2Gh9o#*vvzAVV+%Rr+!>>1chR>6zIrY?h>mAW zu^9HmBtn}i2AwD^_=ciO`Z;bS^~a$wd=*N$I4)^6)d=;E8q%a^Le5Y5LiHtE;{*l) z?B5?k+N9VL1M5_TW?nanx0Ld{{~?)=`PH(Z>ZuI1-bnc712DcmW^DSK6_ede+ZPU-hl2}6r!Hg#xxiOe6F27|YQktj!mMd0Q44em1tyT#w z#p85K=Nk(ml#wd}=O<0SwwyNH9ZGF3vM5dVXTWe}$UurL9@7aaNYpf80pn)(D zJ#of6w09t4k9XCn^2Nl{k;DV)pLo~~Q+LyF(i}9j86k|m1aZR{NwP__NhFLw^|JEf z^3`%ojdP6=_1H2)HNPrJ4Gy)`-PtEQy z{FW{6P_pXPzI*q<4~S4l*xi*}O1;*8S^t{)<kz=5Sx6>)=}&*DYK zNyaJbKjK;@1q)!3(ULe(R{i>$)SGtwcKrpkFKH=g3E&3MN+vd8~5U2tfy zR)|Q9W0>~)NwyR&kI7|mm$ff zioRhiC5)mu!}Fkt!SL!P?FLZ-C%GrX=Ee0H$rR6|85O+akK)?6yr}y)ikP=se$bWu zY?H^5U&-LlCQNt#XvZ$Z-_8~kANSKqteiq20RlPz?O3>vRGJ6ZA^Yqjn}B3VXhSyj zKPzA8uwX#MiucrY>E{^H>OkgN7M)|^!+gmV*-T@{qxHi}KY21wavqOyyK&d!Aw?l_ zS}dg6JMER$e073OUP~C81TUCEG+$N{_V8h3O0d;UBlnI8lTu4 zVrpP)2m2i^&m9{mX#;iE8jbHlvPgsp!Xv8imxxjb0_N$LJ-10h9fmv8mJ=JwDtcSY zCM>2b_IFlUvh}c&%Tsnzu)C-OF^e#bDMd|(D;~u zhsM>nWLW%*?omFK>uA&D?xY}6ptV@~S-NC~TKc`7iC(MHsPN?M!K(Lz)Dk&P zCa0i|m+ZOvkk#V;_vr-C*+f)UQkI`T>+SN_rF@9buIc!iHIBnc>l@egDT&9(U4b@% zas9Jq*R#5%Z9J`Jt@LVsBfA6F13_fMw9)`H6PjMtqHogz_ik_WvAEtR$>tefxoGz~ zC48KPW%CKGw4ZxBT=!jHt`V;IJJTV?N1zKHbZ~H+Qk&7m=VQ?Y@s&`Rh#qoz{$x48 z`jO(31r-5EROh#*tFP@5Uh~HY+hkLz6}v)#QsBx_=MR6Z8i}yA30J* zL}8D41KA9r~ydyt+Ktl=na z`F;$bf3&=Ma-Tq)kns5YS?c+NDF@3Es^0u)Dy^yj0C>{?0N;WDfZIpZaUTG1 z`vd?Sd<6jbQvm=Xhj^ntNdUmQLFS97y6582ipN*AZREgdg6m29buLRmu&U*Pp7Q6< zDsLt9>ETYKbL~9#Z=D>JlfP4jeav9j)y++WC&SyN_~Rdte~@j43QN?xGJ0ExJ0+Ry z?95E+ob#xYg5TDSxTyJjWu_@X9RSZ|QD1N9p8x=#QAHvE5ctoG=P^ zbpKCG{qIfjuciFAOY`r?|65c42d4Yi()@4W8+OE3Mmrud&H|8GtGZ%z0A zrtw5>Qx)nvv|G|0HRa^rZZhyZmp~_)08yVINRtt)8sk} zan)>cRp<7==W>&dpQ)N8Y;s53>QJ~7$_8)Qnp@Zy@9bLc?|~{|>Kn|u|`^SoQ1qV$t@nb_pB+duE;IWgecQp_3T@X!Q62Qx?r0-|_n|!c)_Hu~D z?2LP9PUd^x-AsyPLW|5ye|43))@$_zAlZo9Gob&jYfcKCC<&HTQ&+QeV=-Nu;EF_qv*@hw0bzI6j+B;)<#mbr~ zm(5Ln=!yLpsQEgFSxzL%B(wjbQG|w|Jx6<4{Cj|#5zGoR1&xojp+>r8s$@&RdC(OOC3wW(5}=xAbufN48xEY3Tg-lgt`ochn; z#&(;>vZ)gsB0vAu#ay}$ZmKN`eg>y50Un%_fvu@VokmGPL|>U`tO3{eX-i7JA}pJ$ z?RNK?<|4U*iOqs6u&Pmdk@_c`z|Y}<3I(w2(TasQ-Mjs`_{!p#^9zkHe7dVVG@k3t zUp?qD&hOf#$H1$;4SNWxA}&&EDqZyYra{kb6BmvMkw0QHzo%+<&GzpKB-SiuhOGt` z`i*P2f)k~H;YTWI~!udn}{^#_Z?CX+miH$n^g zDpZ+fz8CNL`oMnL6k~5JM?}Q?C?*S@Z>BvXkVMY<)_pwN(NW2ic}nv#6Xk(xq=QCI z&8~p)*hHnWpV{f}Jnw1Zvd1CM9+XM+1l)7z5m(CVcbWVucK+^OGtop6&T*UMN)@nT zf*GV|q2u;?{IGlDd_U-B;qj{1Rk6-b~Poj$_mM}E8uE!6RzF45s=wF%c$efn(g4rz|AX` zT;RJ347vENeOr#flK^CZ zUBZEx|5zZ0#-VB-@R{||%<`G(4k$EYwZ-CQPkJKo9P56;A&vY4^ROi+%oQdMB5D3} z8auO4#OK*+dz@EKo>h4eB$AS8z(pq=n% z+&&j6bYS?z4x%TRg1xOu>Gg~yJtE#Xwu~rp4|r|Ro}{fmm-luRd9L=IO#74VM^_F1 zJDdJGat;L~6ndsQyZtApu%^!HJgz(G9`oLL{ZB-s7+G6p`m26S~vViWau^GbM zIrY}67s~m1sKBUxaJ-x5q&nFll4>@5dm=)!H~{OVS-{7Ta1GOQ4O@DKna@Ky9AKg6 zZtqg^>ndm2#T_JhS<(~*Un5yAo{cH-A4{6<-rPi-WOHbPCp%hb5YYuiD?*hJ8Lq#( zu}|BrPt;G8nC^Ezcctueo#{a-mv569@@m)N?wW+rcBFLY)|$2>iwlV5j%gZ&winJ( zr;Ter)qv%V-y%HAfs`?HjcHh-Ioixg1j`AhGJiHK}IQqkVbAJcDvu( zn_}E#qdtF2m;>>Sualdie9hNd52Z#UF!!o?wwHwXitPH=szrnt{_OWrO_&6E+3y0`&O>H@DL~ z4EP&PrnhoTx80_x6oohtZHjR^--=)YACH2y@)s&J~^i7{}dyN+`dGd*5FX z3zF0f26DYm4N$ZS{u$pljve=wJ|RCji4U#)F5+ZdHiGa2GOA3?jjs;k;|N!dmJOz+ zhM*q@-UP%^iP2m#{$n`55{Qc1ZfN+lCLM9>H}BRQ#Q3(;eReimfNf3V_P4#OD_4lu z$t;_QK9Q*%t@G^88H>(DKu-DoxqOR-l6`b7--KA1b}jW4km*BcaI?Y{Wcv0dh82|^ z92RIUao~dqYl@i}mp~lF*OyL5@F#FZZjYFY*;}QgW9wx4K{n|<{DSxpcg36klG6`=Hfm%%w{h~pk(ZQiwff}ecLRVidak2$N#XCMaMXk~4VkomO#_Gp*t z#o6vE1Hn}C(x!MDsgGY_XaZa!G+R?$D6wyLQE=5@-mux+&LC6uDUEzZUB~4?)3wNz zPoU^Tt8tjm6~}b45xXZ~7BM?H{l^5l9T@(KjPiQl-xGvv^=t8S{Hp*aoq%(8_?#8V zQ5{#ZwBAz8_=#20KSrKwqPC({EYMcd`RVu4$+zAFxf<>qq3per@lE2zasJ)>40`W8 zDU`bl6}RW)eXUM*e4km%d+VklTzkSM;O{;B?L3cnEZg^2Pv2rwc5YPPvL1WJ3^7qx zi~MxBaK5Ba)Wqz6;c;E`s1{ZDG~$v_FRy9>|Wr z#$EPChHTnjgGvsTjFw!7UC|zgLq zwK|uI1|z2BTpgsDAO~Z?Lw&2VUu~WhK7AF4`&i0(dlg$^kL>zJ`tV>k7Q4)2aZ3~Q z_#`M#O9{J^zgyyK5RfjJ8kAx72U;M9SOzXgiXeuF^L8PkCyE}=KF4s6BD!xuKC0^z zFQT10$tm@BVzIdC`;eJsJ|x-bB2ugPX-DAjZ@YM_U`#dz?IBEy?K7h{)Gq{KHd{wq@JdvY3Qh=Ve0!2JErrzm&oaD{>Mj{__9xG$7{sN zqXgHsgG1LXCs#-t@T1YmaBBec36mgM*fnAgQj5r-)mwtj9*>ZoUpORalIkVtP8u|A zpt57r2iD)63mKr-xIURDh;%AQR}YBMAIRko{BuYfd~uhGVGzjvdniH)V;o2W8+%-2 zZ3;=Lj=r@ck|Msq2W#H%Q>llbtdQgiVJGmn)>h8H@<4`@TO_G6v|%Xp2$oJw*k)< z!t^BZwub+i1EpEY4Ddlv;&DLa&B^_ln-ijOQL6&gFX(fww`6Grc<4TIjk}SiBdpBt z9+QGipZ1YmO$_{q&I1w51;iQJT}(S<;a5)h`9)O0%8U)&eGMJSWQNMT>B{sisKhfX zS;@(*_v$-Va;ool+{2)#;@u(I7ku0eX*%83O#A%m_8?=4D8R9>R&5Pep9jk&z-nj^ zDVvZc;ilD5d$OSvb2!a(3qtvXz98&d;L+sUYzlWu5X?74pVm5SLdz%WB)frIZS=$b z+F{S)A{1M_0f~4-^Laz>w2DH`fOd*0Yva@PXgYfDx!=ib`(BXK#z@`JZX@V!)M zs{N$3`bl=HW@hpL(j7s2d#pa&)E=*Gaxr}pd+jz`;JLIQyAtZ{Z};s7<}$K@{dUP6 z$EhxT&a_W6YxZai#y3i4;lSoZzqw+9Dvp+D2d4wiWpaNo+qi=Q(hLiBgWADk9c?UK zc_NzYTglv`es(8*OU}`$7?;BrUlA#uk2+$_8S`3Btu>1NR3g-brRMVJQ2oxlhh_E^ zg8PT&*a5G6Ik1;~{Wm*k4wSR|H+<+o5|#kPa79jwPmA3-9o&jUm5a~+Y!WdAK9?Pg z(^2<0FMf?6f4rP}izGw*7H#BX3%D7%kJ6j*y+@xw1IDt!Pb5Rpu@g(ihp`e#vkrJX zh~6PCEI}3XjyQf~UYt?`b|D49Q$68nlDr}h>G};7g*p~gs7~BPl0-1;E;37prIml; zXf#PH24@}owy2{>Tw0*EYPJe{)S5$Z_}mOZB!WaOXO#A%u&{KauTAv8yYW0eoN1%3^ej;&*^la6qd?t4V_P839hKuw_9;T(gIcO9586B{2}+9CuI7B>zc3Tky7hU}p3A;F88OiD8P>h% zR0uFLmM14SmMXbhRf-X8rdn$*$zUKLU&E&>kuMgD-|+ns6I7_tFlf78u;S&M?eCOn z*z_D0UEV88%H%8=%zNI|<+UCvej8G?bT5Eew1LqhfWNlnEx8-rn$>bv97*YE^Ss<1 z7mr>lwAC5a=zLN&HlNNCA+Eu?I84Es1<{0l1|J)E1UPRY5-|$&wD~~4e|~H+!izJc z482i1Tx?`drm?_>4e1zvV){j~tX1tNtm^FQAWVkW>nAw=3|wAC*JLr|up1u!#Qvo_ zefD65|78ulZv{B<+PptZTcQyxwn$7SmWxWX^tv+M2lse)IPS6M4Ou+JN{9NcuH`3p zH-l1i6;bxa-&2mGDfyp01ZzSyY#Qv2tqXFHD}laz0f_YHejw%}#p$d~v|GN@)2?4l z`^p_i0&AZdPm{1b^1o6Y0%hkp-)&iv6-j#asAkLREN-Klb<(lUTz1TG>5ZePK*N_t z3oJ5IrY@9sbq9s0^6TPoYeGqD#A>TASRDL?xu~Iuu&t{?lf5pquC{3NQk=#ad4Z4M z-c`0~uu)V;g?Ffc_FYTu8{B6G73GI%b_-`qI`4LDEyr(8m62DJE9Zr4&CIASG2TNe zm$h+6x#%0&Fbx|S;m#M*r!-L!HWQDQpBbXx2t*1SMxKxFH1NbG4Oy*6IPQi|c8Fp3 z_scp4;sl#*mGdT4mF6+|Y&#rD7|Y_-2dY zKK-ksV>LCvIw)6t3ZH(_h$^<+Ab++^M(EI==}4ud!ewOQclt<_N82DWZih{+CqH_Q zSl~H4iB0|ZG23$^4rc50BIDG7xcxWXzZgSOu-vq+U=1xz+&SF#z|79n_f*a~%l#1S zKrq%RH?1;vlUqlYHuLU@A)o3RaZzW{L6xVo7c&&cG3y-ep zS~D7N*BjaV^c|0%PR_12Qb0BBJ5;1OB;U}Z;#c25?f#x&`=yY%rxA=)FisCKfAZpN zDecIP=xCe%@2~RrOD`aV>&IVv>)ne8=iCMlnzKsRD$iqBFU#%wp`h2-+ju_$+QKZ-0C(&1l@MK0S{Mi?)Rzv(rqjUEl@nF?M!tRAY`!0#zr8o+Y9o&FuJ%>wO4wCB@97-=l8 zJ!;8D?(9)v@_T-f zyn^uZ97a5hkON9Wr~EH{_~dciKe59AqLjbGO^|0_QQp>voDR@4Em06 zJ`H82at6#Ilk{~V!m<_^Ln9+!fXC!VEi@r9cT{p3TY16%xDOfXit;f1hytzrE*-;B z&O^Fx?l66CU*V>3Jm(i*=px&yO5x`|P4D+UaFUyP$Pb#6j@x_SgL<-S-C(N1i*$`F zTA}ha)d*-tpxKYNUEk*lPsU1dVKen=-}OJdMj{t|8Q^xZ8y7~M&~-$x?IxN6ir%_Bl&eeEt)d%!iH~%@ecY?FN}h9GtNoO`rZe- z9&aiC6QPp)y0-GU%wQ|F6$&ew{hpQErzEd033Wb|qTre725Yt)%3#-(nNQ+5u<`?4 zuLkv_G#Uk9MopF<9KiisL3Dl5w@3pE<1A5V#I@|i*w+gb zKrO~ny0)3LPk{^x2q2XQCg}LH_l{F`ueHpD7Hz4!c?<+>&wmycem8iP!#ZMxTYvwH zrFOL)TZ4S0yv<52WIQ0kvBr1vj(77)GZ@*Sm?!{#NKSj3DT#XS%x`NmH@KTjk!}Jh zth$WmsUFF;1(o~i)M8Mu*kZUlq}A{0D^+&0&Xr)E1Y7pqLmL>WaLss6?08D?Z);#^d(Y#?lbmUOC`j)x{8i26S$t>Z3ie+euN^H*7*R@iR5g+abElg06^Pkqk-4wnVdk)M_M z8QQYcUM=sRP5V|l6p&s#pel{?OxL5aD$4Qv({;APgW;;<*?`~*hj_At&$8!RH97^w z3YfpQ^sMJ~fUB+IEg?&aqNPn2IWVA^2C-k7$7~Vwe z!}A~>zYJgU^vE#mjD=p1cllRRG2|M1|9#2|tUUy$MutRStEtGIkodUSA@@`9RuH-~WhwcRUTTDy|UX~fT#L#QP3({0~8ZN4s}v(UCp!mv!j;>K!oE(J(Rk z+8k7r)%Xoi2(!+4U~N=0Oowvyn~n+LZP`A(6_5XRdD7G4o%XrKS+98fQKWb1;LM4_ z*ZR{>4W0%!t=CiNDQ;>LZH?`RJ20tMy|8om(cgWl2QT1VKeD0DIqCG7RJ9@7%;zVh)&HFxVjLJ-8s4y?1qLqKkcT&i_k|oNcMzkIs4q&B~G-u%Ex$ zqKA%K05YeOm4wd)U<;g?EMhIU9cQ)URaZ8D1{oKT+$#9MBAx~AS+)zk;gh@-=zk7nyRt5A z42{YG`fMs+5B2DnNaz0eh)1=ug(fQ#@0=k}t?yzzI9oXY3TAmnV)Etex9rr8YgbX& zOD_!cM7p!`YD1Udy%Hb23_rJ(zmbx|3b<&~Bio(Hav>L-t60Z%8(H#;8v~Ps6}#8*8B`dcO}#>in>YfE(FTjrb$6E{2TIj7R0yN6!Wn zr8L#4#08(R^hoABVYc#jo>yVSrRrv+bnHfU z`xTj*lo_)-*h9F~P*4^g`8tJ6S~tJN`^9R56k%H__}vm-{!^?aQD{ReUqP+-Q3dAJ zPZD~i?YU9k>zc`+l}IXmBPgq;bo(-x;puE=EQZT*nFn2wnV(|Tc!0NY*PkcQW@v$0 zJBseyy+4~Xd#~^P*V1ii5(`AOl8)$q7-XUg8QSNwQE~HcWV+8gZecOtzhcw z<_FJdiMK+rbYC-~%848daB1D~xZcnMUB!d+rCJuKVGXZrIlvu=B|onTU^vH-4(RYl zC%=eSQJ=p8W7|OmUUXLfk;^+Xo7%JTy!y>&!4GEK5O-h7{9JEW$0j^_6!Im-Q*`)H z!qlAw!unRLn^j_tK(?iL>}+#;3|o~nfNf4aN}4_ZeXfgD;31DcJj%HAVzd2jLZir9 z3wC1uvQ5gMAfIhFa7$5i8Vwd5#y>3JzR}R-l@rpr*jPH=mAU?Gfn1T~?I!$&52^#Z z{38};@MS4M0v`Tp-{JC6X-mWCO2S$RO?ifTOR34#iflon#w1`;0F$yh`-9?f9=z%S z=bA)kfTgQvhgS9nDj6h;*kO>mR|! z6~&wwky4Dd=BrW|8B{}7Mn(LT`%SD{;}snFqjDi(dd07=Uh4}^1K8=kE`P^L*7=Ns z*BK@s!q`sJ?ylk}cl<#acpr=>*4K+Eb9WY2^VzCcy*K1>;^F7U!On;#sYY3& zpL^V#YiUZQ+#?HkV~j+yh5yr2q!x-(i((bI9p~z?s|;g%E*r)jVEgx2ua2K<5h)b4 zlE&4&birO@@l!M2S@vKKJ`rFX5cihuOW98{a&ku$FDzX3oyXutqSx~}vkSh0P?K>x zM~Hw>vb_@8m#<$rlk%q6NR@c^1h$3x4>Q^w;;!C=^TRTmu#tCvzW71L2AOPpZ$ml# zX7QCSARP3C2bYmI=V?5#L#>RoK1;;>z-yOZ%2?=Vd zz>?NWBWBX0t6dD8%dz9RwgBGFqWTly4RG3qUGqpU;JO)rPd`|4PL$ z^Yc@hUKfuBe|ziS1yGFV5G#kTwb_uXD#Lrv*XDM`jvjSzzVuT5ney?fa&HY$^XdKk zkm$1QegticPP&jV*WQ6lUUxwuwG0Y)0?|F6@rlLpIAoO+X+jo`$N4ES)kAl&iFxM^ zI@F4Ad~;~sL;8&hVNFI&2Y;1tl;C;#mMAew&@r*nF<-^5!ax$$i&&48*@m_(>T9yi z{?kB7R{<@a2B8kxBBt5x$47uWNvpT!6uq zRQaMsr`MmRP`dE)@_U@$i>sHb#-_uiFHq#C=fWq&kAb+w&Lg9PP1yJvkVs;oiw1T* z!J(S(!MEGd-9|IKKxpf1n{MRk&=i&&%#fO9bgb70qRZ#PzzY)Ag1VnscoW`l{ z=rMSGf4&t4|E166l#XZd@{NI)*b%e6%wN5qZ{88?nH($x`zT>bs~{me z`~meSH3R(K@cPOLMWsfjuhE7|R;+k_bhr(Fy~Gk<-i^5+e!sVIXbrM2K2o)b zsK~$pX|_X4{(Q+Qhk}HfIxXS!kCOq6b_FnNk79h0RtBLKNps8CLFGJ`m+4FVMse*W z4~;5SFE5L28Ww>b7Ap-5J@^i%4h%Fr6A|&#Vk#Q-zbInprACw;1|GLoSW2KvyydaS zj8^{V0}TUJ@4Il4sbxgSd3F?9{KJ-xCId5tP&A>M=a?Xg$u2+j;AJ|)I=P*Q%L!x| zo{iiJX#mH{3wgX$+<^(UpU%X3_3IbONqL92t3$|`5=ByL=)1mc^Ona{4RrFcx(r+3 zK(fkz64PIogbPBL@`WbAV)rOdK`gnTjW=CvLMIIQggt-eoWDTYz?NrQ?wY$eK2(n3 z1NDVWa>2mofoC~4G3g9z`uxrlkv`Gyr2aOr``GIK-H^%49+y-+6U_}6Wxz+*w#GxX zilX9&QpzNmJBSah?$@!X3dFq^&88NojcUEQb}SOXGzc2!QKb^XwKvrMP!_QsL37@oT?}W(UJpM97GU>FHiy zB~n{W48>Q>6=O934{$upI{i2IFdya^8KA15#<^^;;hXJ=ZrZ0bcakUyC?vzAq)Kt> zkpYFD;~3y`^9U=CzZPqhgo2eHJ`88uyiA&d94y2Hi#bCY|2jji-0Ib?ZddH`bC2mw zk=%iG9W992YBe`u&-|v9XoPMd7{wKwluSR~aZQBnqEM&9q{EGiwL4}g?MCKPbPL(wc@|^rOxA?XMea2<=FBT%u9nfticQUn2wSV0kNePeKk7q;&>KMs&eVnVC z2{uq9H)qA!h6)k<%V!i161^UIZrEwj9NeP%6eY>nKRcy>9x+!V*o*XwOuu-FmQHW{ z_-57Px6*g~N>h8mHiBpawt3^D(%5Bm8l9C6x*`y+uXa@YxrrdcN&j$cb6}Mi4JH*! zP8r8`eUOV?N$&j)4{;J{c2%AT>Z5govGwb(; z(eT5czoXmYn+0tbEmM+Gp2)MoM5#_ie;yreje!-+*B&sdeSo`egy<~0URbTKPDq*M(81X|68&f@cq;RX?*7rUie%tkE5La-Z zymmLlmKDqb9>YH|B%d>SCXTB94IfnEo%EIrNVe~K^WRENI9@u}Mtd~9ZJrqB<3Nx; zCv0`FKK4ZX{04sELwd66`KcNjEL&`PA?*2LJNoX#fK@87VEcMx(^M>ae~+Clqv&HsR9sCyx2Y`RPmN`{IlQ=8DgTBp+tY;J7@Pmv__Myrk{AfC(kj%H`+!N-)f z!+TCXggDi-SwlSx$`b?OOySyhQB95fOVp^m_mZ!ZmI$-VVeQ=Wnx_+V?U$ZNJ+v@B zsNpwISAO^BFX0dVV?WmjC#y3N;P2IgzLvLQ*u{o08iP`lKr}jJ^l3WLQNvgLu;)){ zSf8VmS9;7Hq3p{efAVgB&{wZKW(%%Nq_QEja8hCdkk>t+FWBuU?J-%YWzt#vpIuX}A5*7(aONaED^H`*pXNK_kVZ|pkDzu{R0Cl$hc&bOQDsfWR# zr*Nf!u}_owQ-=1Bnc%2ZfW--M0@|?oB-z>u&*ZcYyz*2|@`ZL-D%qxm%X-WkLUm4J zSG~)r{8WEnF(xVnNE;LkHyd`DH2`$nW8CI89lTmVKjw z0@+j+ZTIn?Qe2G6O3rMmbPJ&842uf~eKwMe_XS%gaZwn2R%a^<>r~y#+vFiZd*u7* zXd|VcjoY(PVqmE3^U+MbH@i#X>H1fu7M;GYqAu9j$11oMu|VYt-nMg+Egdc{Z9ntT zup!Bjl+W?Q{!UhJO^c{nIJF~j{OP-zfK1NcK8O2j8qQfqSRkSe1W`)J``fXCsE(3$ zJGt5RoDV8)==w?B;x3V0d|<$zQWPsJakBa+M@;a20;hvq9oo_V$t)2;ged_j;Rb8j(ZalV*TWwh+wvqR_tiH6Y zO&^*pW>NRR*iGM?NeX)=R(5}!!=wSGWWS&D%d{2VIhyhQf-J>{=9al~Ha>G>6|seG z_3rD_Bl#hbds`gpC{B0z8hd0v#~&n9S(NLYWrpZ?7wQhW3fE%rw6OOkQd>qI`$n6g-6P}y-1Ixc$&IfFc`gR# z-lH}_r573-&$iJ6TI7;Q?O1YB37JcRqgyU<{GBRC=3}ZG>P;Z=BpYUp?nZE*0k>+x z2$y=pTF$DI62)?^#n4XKMKy~Dy%Wp4Hl;n!=f zTPXdAAFIh(5Na|z0X&$us1)0ua(aZ)NSD7H+DA{r)ooF(PrPlh9HVB=#bQ-l z_PNDhrXieLQ-(EBkMj767@-zn{L#`9{u|WcmfGI8orpoHyz$g^^f^@c%MAv7@w=T( z&M_@}qP`%3v+I&1;?rJ(G!s=N06Y15lk7{DiJEUQ^(i}w_bLLbI>BKPcfy>DUeifjjNnxDJ zvnhFwz_T=&!1IB0>X;eMa{o9YdX(;4DdsAPRlQuXeWys!W$2@x&6ObqYLY0hmBH*V ztP>>r}gH@3PSvcsG}EKk>V2pbbAj&!v^_RbulSjnrHV zWfYB?QjyyAd;ZN6uF-Lbdk13LDkwYNP#ZKg?T@PJ+RsBS5lg6@o^G~q@I!HwOMQn~ z!wtQ!?s7-uxg`41#}bsJ+9xix?y>f<^QQ>H_Bc~RO0U&*6yC_8MZ3yj;VcjI`-%cx zzSx}~JJ^s}9pRpAf=GG|pLKBWkfSs5-Fo~Zy9pRU38j}(e)OeVM9u}o-_t(-EhLlM z8(cb%FV`lXB>`r8bxtrneS6fAe^LMP^+Xn%=-dc7uAuEIl%d1uj?bN%2rQcfP1{Ov zp)`Zn-FTqzk*7YxFYJHT-4L z{L=o*##AsGiVu5#3=!-iPjILvUq80C$&U;e%l^QZ(FY_wa^KCwY%kAmlsJ(&tz+wY zsKKRoqF|R8%WeJ&Qc<{VUW{05w1HLY+==jRSC&03LP_Kn1^O@Ku+A50VOeWKE7bh6 zFzS_r+wE@m1QbGseNCWA`xn(4h%Kgx%!pISpzuA+RiVOq^@KFlTEwi%UEvT)TqmU$v0!iye^)^}L=S zg4<*$ZgY;N@CfON`n;K*CmAzVSrc-t3h|FNq8hEmr0^2gF&<^c zLW2>hOa3WD4m4}|fZ3_NrGP3bvp7?O*}2U}^IH!}A+O-NodSdC-*&|*n$o?}Cx)NF zvNq|zQ^~|9WSLLkr1DIK)_=+EeZkmXDdU;3E=<`Jhwj!$2%8BJ2VHt;oBP=$zanIm ziEn_XTl%%;%2Uvk9Kd>|sBW)zcFPWxtO%Ep^3DCk~-i(qTN#`ba@uIY_% zHLc9HQjIUP8<6`#3eyPEkAgE#(7z?7*J38Kx3h{bOX$-WOKJD}z30_)9es9t0C$RM ze^G|{qb1F`Sx(7l(6pe9R}Pgu!y4in?rjU^x&7=${Z=G25pGRHR~jAcwc14k9}N^` z3K+((NI1lS2*DG-cDwC7355`B-)mk|WluVwLE%49_8|>-b0G|O# zXB2{u*7EYco4jdDe*5PoYp1NjxNZTiywa(_Z-s;P2*<&!uTJyNW@chpSn)y~*(kYE zLVDpYt)5$8?QYo)tsSl9t#CA!no`ezZJpO<7WOY1!BCKY6p~yFs#3 zCgStIVB2fz2NQ8Gm0Y}Xgm{1)&!}W1GVp4AIMCnig4(6#O`CXjQvu0_Gp)d!HASR+TQCp z`?E$T=rBsDb_L(vOdVHZZI@im_5k)O zc})$%bpRKs@kWDOHDPr~-y&80#t zdFOd6EWqd@Q2Hh>ME&>Z(W0dw(}ktT_+e+cNfHLfF&p-Wo#53>&Ux3g3~)lyfT8PW zENqkcg)}p>O$#zP*&6<;v+L{aX(g=X5`G=(ysa|_ z+s4p5%o_4e6f7}?79%u9h7=ex4xc0)WQCyC^URHtq#B`;cDj2zr}1t|f#;P#cZ zG+jF&t0mH-+5`@{f^YWyZizx<_7vg73QkqwM(Wa$L+|!oJDO0ll0p`6zsD`HKI)tg zb?zSOy1ef0dkW#?B4u|m1wI=mo`!bF4^oZx-B)0ObcEnWb zN}|99yXXCKrs0i@llHJ@<^$~%*+l{|wnKZxBOicfA?JmV?@wc6H5_N{EYnLBZ+|*G zy6dvmMR0-DOvGk8S|>X7KEUznrgC8D*WC2{p8Lh?1S-L$0tY{0C#cwcd3=elvEY(j z6==q@DCs^>ukv1srfR;sVD8)YIoBGZ6e-g*xuRZ4<0wX@@qHl^|M|n!rd%$!3s}1{ z8OSxX_&bKooWGO@Nu(J$MoijUmtHP?yb*}-Wy)yUDlf;#*$Z}dm{w9~=e;+mr`VoD zcQmDq5>(iZ0-p-S3O^eX;abfX(icU+u(oFN)nWH?XHiWls4rFQI#}QS38w6Jsd`3Z z^=?XS`bmA4mztx>TY)n5fgAELn!^AXOC!IU;*AEeA1byf%N)SOCP>}c+!kpjA?+aq zfS0f_R>F8F4~?zikIt^dk0Q~xxuD+NZ=7VQu&*bmOTM>`nv}tP*%7xnmjEGL!QSPj zUyXSAjZ#cq%7E)IFbW%JwEzRBpNZO(%^|WI@^@|6q@8qHn7i5^rXC~+5z!y;I&Ru3 zn+A9keQJBK`fJ$09w-)03=gVEu<@q3GgoHqrl!))tgpRqH?7*~D^_TYis;-+w%awH zfM_Ua+L^8p>U>P7F=?xno8YiC*q{hIeKA4sjGO^aei9$v zocc_Ivn%yWvEnPYu>J6ilJvP!nmu*<;NtK^=H9Bd>uXMI9UngNMmP(Nu=cmnay`VZ zf5cW}UC6cFC6(Mau1fgnNsK8RkG%Xm<*xXak;8NRjH*@$qnvsRiV5?zmo?f0YcYn| zjgAW1J!FuDxme^ApO}T4J8#8e0?(k{S~ujuLM4%R=LSM$UU+uw;RHnyO(%lWrU{== z2v-e1=PLEQqGE?MJNMq+#HKtp7u*rdd#F@D;r3PRmv0MvJB_&=T zZEU{LLQPGQ(DoO{KR%4qjLm5Dn_|FIZCG6)mmet;ffX=~ZcFQ$0a0bmC%uqwker%j zUv|evzC`Uw?&8FnD#yTM)!g?eI!Fg<3KGXGMR&($H}f zojen&)9)Ed-Y|slz6oFoS;pMB^qHlbUziKPGsV%5RM1+5MKzA-&U&3ma2Z7fq9H4nHt_dp2Hg5!7* zrA}6UU{TyIWi`aJxTuE1^S&HczFrcK!xTSqLf-`2bj>B?4NrW8?>cefbWfuB&sqcb zYE|WMQq?c5s;aWBA?hPL+F<}dMebi8r8-_@V6Gt|6(wBq6UBV4Z{`ho`^bQcV7uy>C@Qn{ z9_70(!kwh8bvzm-_HMyL2M_DDM%$MCEqKY*J@OYQbpj4BUi=fy!*{m%(>ERSthZEi zUM^v5=+<|hiH{!EP6v@?rhtC*tkhOI%OI3>UEx#MGr2FX@%Hw6=V-5yS1?+d^B&Jm zbSh=(RI1vPtVSmyFM-GbeN39cN=*)UU)_pR`o8CNaFK&jGD>zw?hD7eUz=;S-u!qh z7yG0c9l|ib^=>9wIU>!4|K;Xrl%LC6*WbbSlX+-|3m#y#S1AlaC{GGS=cvC6hS+5*zw%!zwx3PCGl%UjVXRJ)$Rx%KA5Ybj+`G3gR?ZNx+ zqZSwcvVL2#c4vl@134isbL^7~(+KfU>1xpHj$ogdp5iRbZ+N(E>UUC-SB0L4fdj&b z+CfZz&Xcpv%F71o6m#bY;=?`+1z;#ipbPir)&d@DKfge^l;Mb;P1Lm5Hh%*(NL_g1 zF!-a{ByZ{kJ*)V5vq0QH3JE44!9J?~xvlk_Q=Olf%~za|#_>$%gm53DezqHTrlC~@T2s~?lUhi${O7!X`m(zft85|9 zzXTVoCW*{n^v1lWJTBdIkr^ME)z@I?#f?2_Vq-{!PPx0;2q-8%U=M0;yccgoJqTUQ zU7PrWo35{!G3`%P>!aOLM>|>pljM1Ar*tDxi22S;j?cj3hAU$Zv571@C{S5@^Z#N* z(~2|g61`qWM|>jWTWL~`d@#*C3Yh|kk_ISYhgnV02SyR(`X7C4~ zsL>S<)JlvG7a+S0zpXGZ;78b5q&21WzJqs*;64RiXW$tw& z?T^)B@w(W`PA1n0OhSr^t6sYue_y&}1U{ANy8+xSc@rnigVlc4LrD6BWU9Ck-3=7w0HguoXomln99r0_7+A z38YQKBe+>kJ;|4Wzw#2k-7ENceyxle&DItJ_SZjck?=64SE5Mw}~1bJPW-yLm+C9dX!&FM_Iep)so#T8=UMc;A^WC z`Q2wI@DaoG*aww_`e#UXcww>>D6)sHB(zTXl5-l$>HCCyD{sQ14i{$ESCm$m2;(K0fXG7-t^cs}^4}umaC<}5cJIxzBWT1TgClO-(}Ea;H&|}(j?P|f@xNVx{`L0Y<>b`N z@6E|>9V&=6`Ld}~qd6o|FL{hP7qwe59poo{bQgORl%mDbJP6K4M-q?5cpX0tYd>22pxJA!&rc{VYn2R&Jpev{gRqp>|5^GeTVPrrQdMr<$1cV zV6YKhr~9Jc+XwV@qxRS^+@#H&&x4zaA%CmYRQSPgIois71Jrxi>y~axN$2}$6 zswiLtw2FcTrRUI{$)-x=#^*wtwzLu$5EL@6^ddN{ns4@9JVtohA|n;p;zGUq8@e#S zIG)?=vy{i)qoh6frC5Of?P$C5^Dl;2w{xOfkvWGje>dO#>us~xk)_65PeK65Ce2oc zhL`Q4xcFpF8>dq?_W>>>^`_+E=r}|{=CjQP2A?r78u~%zhueMhKmw4vPNuQtOm#!w z1P^KS#o@Z%HX-%?XYMdzE!T^jKS=v!5Jr9-`9wSzw18@2kJg5YLl)AWjd&l%O$LH0 z0yfEL_0qby$fLZ1M$e-_h{Vrjx8FU^z1h3Jh|0ZC7ZjX2kcN{_JI8A&N4ceZbi)Nw zsF||>`Obtr+I&Y%xyPzmuw5}d);5#+f%HJ%a@?2Cm|mUSTO=fcXI&3u1v;Y52q zvh2EyCtYnry-pxv5-vP)_UAd^&s%HsSj+T%42@04`_5|tQZhPy{d9=MG+Xk*+K`TBDuAKhw)o zdP~MPsYg z=Bm$~8%ry>58tK3GbLa5kQR#HHPA#&=XfvgtcC^ji)?wjB~4x>rtvw1e$RhuUK=Qp z#0nF!#Mi}@{9f?5$3vG@d*K>0^2(dL$`zN#f&T`pfQ{iH5guQ%Jo<_*K3ZzYgG-K1 zFG(<1VfxXn$>oYf568jG+Fur&E_T(^d$JT1JNaUo9%fzydbXV8b+;)OItjZ{C`%jd zM0>wG>1kjaf{f>#yoEY_h1|n^VwR%7JF`PE*q|&59V};#wuk84XQ{$tWh|P3e%?pB zyZ&2b⩔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 n>l^Z~AJ@O$x_^j}_>Gapply(); +/** Sets up WordPress vars and included files. */ +require_once(ABSPATH . 'wp-settings.php'); diff --git a/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php b/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php new file mode 100644 index 00000000..3b66dfce --- /dev/null +++ b/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php @@ -0,0 +1,40 @@ +load(__DIR__.'/../.env'); + } + $env = $_SERVER['APP_ENV'] ?? 'dev'; + $debug = (bool) ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env)); + if ($debug) { + umask(0000); + Debug::enable(); + } + define('WP_DEBUG', $debug); + if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? false) { + Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST); + } + if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? false) { + Request::setTrustedHosts(explode(',', $trustedHosts)); + } + $kernel = new Kernel($env, $debug); + # SF container in WP + $GLOBALS['sf'] = function ($id) use (&$kernel) { + return $kernel->getContainer()->get($id); + }; + $kernelRequest = Request::createFromGlobals(); + $kernelResponse = $kernel->handle($kernelRequest); + $kernelResponse->send(); + $kernel->terminate($kernelRequest, $kernelResponse); +} +run(); From fb4ea95a951d05b49b532c139c5195d6227b4b8e Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Thu, 15 Aug 2019 15:20:33 +0300 Subject: [PATCH 002/394] add a Domain Event Bundle --- .../2.1/config/packages/gpslab_domain_event.yaml | 15 +++++++++++++++ gpslab/domain-event-bundle/2.1/manifest.json | 8 ++++++++ 2 files changed, 23 insertions(+) create mode 100644 gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml create mode 100644 gpslab/domain-event-bundle/2.1/manifest.json diff --git a/gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml b/gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml new file mode 100644 index 00000000..9af0e149 --- /dev/null +++ b/gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml @@ -0,0 +1,15 @@ +gpslab_domain_event: + # Event bus service + # Support 'listener_located', 'queue' or a custom service + bus: 'listener_located' + + # Event queue service + # Support 'pull_memory', 'subscribe_executing' or a custom service + queue: 'pull_memory' + + # Event listener locator + # Support 'symfony', 'container', 'direct_binding' or custom service + locator: 'symfony' + + # Publish domain events post a Doctrine flush event + publish_on_flush: true diff --git a/gpslab/domain-event-bundle/2.1/manifest.json b/gpslab/domain-event-bundle/2.1/manifest.json new file mode 100644 index 00000000..f2674e3c --- /dev/null +++ b/gpslab/domain-event-bundle/2.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "GpsLab\\Bundle\\DomainEvent\\GpsLabDomainEventBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 410d19604a828dead78b77598ac71468415b0e0e Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Thu, 15 Aug 2019 15:45:57 +0300 Subject: [PATCH 003/394] change version of gpslab/domain-event-bundle to 2.2 --- .../{2.1 => 2.2}/config/packages/gpslab_domain_event.yaml | 0 gpslab/domain-event-bundle/{2.1 => 2.2}/manifest.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename gpslab/domain-event-bundle/{2.1 => 2.2}/config/packages/gpslab_domain_event.yaml (100%) rename gpslab/domain-event-bundle/{2.1 => 2.2}/manifest.json (100%) diff --git a/gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml similarity index 100% rename from gpslab/domain-event-bundle/2.1/config/packages/gpslab_domain_event.yaml rename to gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml diff --git a/gpslab/domain-event-bundle/2.1/manifest.json b/gpslab/domain-event-bundle/2.2/manifest.json similarity index 100% rename from gpslab/domain-event-bundle/2.1/manifest.json rename to gpslab/domain-event-bundle/2.2/manifest.json From afee1696e13e7a1287570a306c4432305b35cf39 Mon Sep 17 00:00:00 2001 From: maksze Date: Fri, 16 Aug 2019 22:49:44 +0500 Subject: [PATCH 004/394] Add a MaksZeTelemetryBundle --- .../0.1/config/packages/maksze_telemetry.yaml | 11 +++++++++++ maksze/telemetry-bundle/0.1/manifest.json | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml create mode 100644 maksze/telemetry-bundle/0.1/manifest.json diff --git a/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml new file mode 100644 index 00000000..7a813a04 --- /dev/null +++ b/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml @@ -0,0 +1,11 @@ +maksze_telemetry: + #yandex_metrika: + #- {id: any_id} + #yandex_webmaster: + #- {id: any_id} + #google_search_console: + #- {id: any_id} + #google_analytics: + #- {id: any_id} + #facebook_pixel: + #- {id: any_id} diff --git a/maksze/telemetry-bundle/0.1/manifest.json b/maksze/telemetry-bundle/0.1/manifest.json new file mode 100644 index 00000000..7d1061bb --- /dev/null +++ b/maksze/telemetry-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "MaksZe\\TelemetryBundle\\MaksZeTelemetryBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From d703d34128b3625ae87156d740c066018562ce83 Mon Sep 17 00:00:00 2001 From: maksze Date: Fri, 16 Aug 2019 23:04:37 +0500 Subject: [PATCH 005/394] fix --- .../0.1/config/packages/maksze_telemetry.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml index 7a813a04..5dfccbe2 100644 --- a/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml +++ b/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml @@ -1,11 +1,14 @@ +# Configuration file for the MaksZeTelemetry bundle +# +# For more information about the bundle settings visit: +# https://github.com/maksze/MaksZeTelemetryBundle/blob/master/README.md + maksze_telemetry: - #yandex_metrika: + yandex_metrika: #- {id: any_id} - #yandex_webmaster: + yandex_webmaster: #- {id: any_id} - #google_search_console: + google_search_console: #- {id: any_id} - #google_analytics: - #- {id: any_id} - #facebook_pixel: + google_analytics: #- {id: any_id} From 9e117c070a566eb4593cde6ff069aeeacdd49a4d Mon Sep 17 00:00:00 2001 From: maksze Date: Fri, 16 Aug 2019 23:33:04 +0500 Subject: [PATCH 006/394] add routes --- .../telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml diff --git a/maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml new file mode 100644 index 00000000..ecc154c6 --- /dev/null +++ b/maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml @@ -0,0 +1,3 @@ +_maksze_telemetry: + resource: '@MaksZeTelemetryBundle/Resources/config/routes.xml' + prefix: / From b5234a352a48dc0d93a6382717a93a1668dcb92f Mon Sep 17 00:00:00 2001 From: maksze Date: Sat, 17 Aug 2019 10:46:58 +0500 Subject: [PATCH 007/394] bump version to 0.2 --- .../{0.1 => 0.2}/config/packages/maksze_telemetry.yaml | 0 .../{0.1 => 0.2}/config/routes/maksze_telemetry.yaml | 0 maksze/telemetry-bundle/{0.1 => 0.2}/manifest.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename maksze/telemetry-bundle/{0.1 => 0.2}/config/packages/maksze_telemetry.yaml (100%) rename maksze/telemetry-bundle/{0.1 => 0.2}/config/routes/maksze_telemetry.yaml (100%) rename maksze/telemetry-bundle/{0.1 => 0.2}/manifest.json (100%) diff --git a/maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml similarity index 100% rename from maksze/telemetry-bundle/0.1/config/packages/maksze_telemetry.yaml rename to maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml diff --git a/maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml similarity index 100% rename from maksze/telemetry-bundle/0.1/config/routes/maksze_telemetry.yaml rename to maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml diff --git a/maksze/telemetry-bundle/0.1/manifest.json b/maksze/telemetry-bundle/0.2/manifest.json similarity index 100% rename from maksze/telemetry-bundle/0.1/manifest.json rename to maksze/telemetry-bundle/0.2/manifest.json From 85bb79f2954242a16fcc743220961bdac55e4b86 Mon Sep 17 00:00:00 2001 From: maksze Date: Sat, 17 Aug 2019 11:26:45 +0500 Subject: [PATCH 008/394] bump version to 0.3 --- .../0.2/config/packages/maksze_telemetry.yaml | 14 -------------- .../0.2/config/routes/maksze_telemetry.yaml | 3 --- maksze/telemetry-bundle/0.2/manifest.json | 8 -------- 3 files changed, 25 deletions(-) delete mode 100644 maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml delete mode 100644 maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml delete mode 100644 maksze/telemetry-bundle/0.2/manifest.json diff --git a/maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml deleted file mode 100644 index 5dfccbe2..00000000 --- a/maksze/telemetry-bundle/0.2/config/packages/maksze_telemetry.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Configuration file for the MaksZeTelemetry bundle -# -# For more information about the bundle settings visit: -# https://github.com/maksze/MaksZeTelemetryBundle/blob/master/README.md - -maksze_telemetry: - yandex_metrika: - #- {id: any_id} - yandex_webmaster: - #- {id: any_id} - google_search_console: - #- {id: any_id} - google_analytics: - #- {id: any_id} diff --git a/maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml deleted file mode 100644 index ecc154c6..00000000 --- a/maksze/telemetry-bundle/0.2/config/routes/maksze_telemetry.yaml +++ /dev/null @@ -1,3 +0,0 @@ -_maksze_telemetry: - resource: '@MaksZeTelemetryBundle/Resources/config/routes.xml' - prefix: / diff --git a/maksze/telemetry-bundle/0.2/manifest.json b/maksze/telemetry-bundle/0.2/manifest.json deleted file mode 100644 index 7d1061bb..00000000 --- a/maksze/telemetry-bundle/0.2/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "MaksZe\\TelemetryBundle\\MaksZeTelemetryBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} From 2285f1649737dad592180994bca340762a0acc64 Mon Sep 17 00:00:00 2001 From: maksze Date: Wed, 21 Aug 2019 18:00:46 +0500 Subject: [PATCH 009/394] fix for v0.3 --- .../0.3/config/packages/maksze_telemetry.yaml | 14 ++++++++++++++ .../0.3/config/routes/maksze_telemetry.yaml | 3 +++ maksze/telemetry-bundle/0.3/manifest.json | 8 ++++++++ 3 files changed, 25 insertions(+) create mode 100644 maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml create mode 100644 maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml create mode 100644 maksze/telemetry-bundle/0.3/manifest.json diff --git a/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml new file mode 100644 index 00000000..5dfccbe2 --- /dev/null +++ b/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml @@ -0,0 +1,14 @@ +# Configuration file for the MaksZeTelemetry bundle +# +# For more information about the bundle settings visit: +# https://github.com/maksze/MaksZeTelemetryBundle/blob/master/README.md + +maksze_telemetry: + yandex_metrika: + #- {id: any_id} + yandex_webmaster: + #- {id: any_id} + google_search_console: + #- {id: any_id} + google_analytics: + #- {id: any_id} diff --git a/maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml new file mode 100644 index 00000000..ecc154c6 --- /dev/null +++ b/maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml @@ -0,0 +1,3 @@ +_maksze_telemetry: + resource: '@MaksZeTelemetryBundle/Resources/config/routes.xml' + prefix: / diff --git a/maksze/telemetry-bundle/0.3/manifest.json b/maksze/telemetry-bundle/0.3/manifest.json new file mode 100644 index 00000000..7d1061bb --- /dev/null +++ b/maksze/telemetry-bundle/0.3/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "MaksZe\\TelemetryBundle\\MaksZeTelemetryBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From f1d59afaa328c4cff5f43062142916d42525093e Mon Sep 17 00:00:00 2001 From: maksze Date: Wed, 21 Aug 2019 20:41:48 +0500 Subject: [PATCH 010/394] environment variables --- .../0.3/config/packages/maksze_telemetry.yaml | 8 ++++---- maksze/telemetry-bundle/0.3/manifest.json | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml index 5dfccbe2..13230167 100644 --- a/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml +++ b/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml @@ -5,10 +5,10 @@ maksze_telemetry: yandex_metrika: - #- {id: any_id} + #- {id: '%env(YANDEX_METRIKA_ID)%'} yandex_webmaster: - #- {id: any_id} + #- {id: '%env(YANDEX_WEBMASTER_ID)%'} google_search_console: - #- {id: any_id} + #- {id: '%env(GOOGLE_SEARCH_CONSOLE_ID)%'} google_analytics: - #- {id: any_id} + #- {id: '%env(GOOGLE_ANALYTICS_ID)%'} diff --git a/maksze/telemetry-bundle/0.3/manifest.json b/maksze/telemetry-bundle/0.3/manifest.json index 7d1061bb..0902bee3 100644 --- a/maksze/telemetry-bundle/0.3/manifest.json +++ b/maksze/telemetry-bundle/0.3/manifest.json @@ -4,5 +4,11 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "YANDEX_METRIKA_ID": "any_id", + "YANDEX_WEBMASTER_ID": "any_id", + "GOOGLE_SEARCH_CONSOLE_ID": "any_id", + "GOOGLE_ANALYTICS_ID": "any_id" } } From 60e590a4266c26e1bc346091e668e23fe4621304 Mon Sep 17 00:00:00 2001 From: maksze Date: Wed, 21 Aug 2019 20:57:17 +0500 Subject: [PATCH 011/394] bump version to 0.4 --- .../{0.3 => 0.4}/config/packages/maksze_telemetry.yaml | 0 .../{0.3 => 0.4}/config/routes/maksze_telemetry.yaml | 0 maksze/telemetry-bundle/{0.3 => 0.4}/manifest.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename maksze/telemetry-bundle/{0.3 => 0.4}/config/packages/maksze_telemetry.yaml (100%) rename maksze/telemetry-bundle/{0.3 => 0.4}/config/routes/maksze_telemetry.yaml (100%) rename maksze/telemetry-bundle/{0.3 => 0.4}/manifest.json (100%) diff --git a/maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.4/config/packages/maksze_telemetry.yaml similarity index 100% rename from maksze/telemetry-bundle/0.3/config/packages/maksze_telemetry.yaml rename to maksze/telemetry-bundle/0.4/config/packages/maksze_telemetry.yaml diff --git a/maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml b/maksze/telemetry-bundle/0.4/config/routes/maksze_telemetry.yaml similarity index 100% rename from maksze/telemetry-bundle/0.3/config/routes/maksze_telemetry.yaml rename to maksze/telemetry-bundle/0.4/config/routes/maksze_telemetry.yaml diff --git a/maksze/telemetry-bundle/0.3/manifest.json b/maksze/telemetry-bundle/0.4/manifest.json similarity index 100% rename from maksze/telemetry-bundle/0.3/manifest.json rename to maksze/telemetry-bundle/0.4/manifest.json From 74f1aa8baeb60327668f00f5955858ac0caaf11a Mon Sep 17 00:00:00 2001 From: Jannik Zschiesche Date: Mon, 9 Sep 2019 10:53:24 +0200 Subject: [PATCH 012/394] Add becklyn/translations --- .../1.0/config/routes/becklyn_translations.yaml | 3 +++ becklyn/translations/1.0/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 becklyn/translations/1.0/config/routes/becklyn_translations.yaml create mode 100644 becklyn/translations/1.0/manifest.json diff --git a/becklyn/translations/1.0/config/routes/becklyn_translations.yaml b/becklyn/translations/1.0/config/routes/becklyn_translations.yaml new file mode 100644 index 00000000..618562af --- /dev/null +++ b/becklyn/translations/1.0/config/routes/becklyn_translations.yaml @@ -0,0 +1,3 @@ +_import.becklyn_translations: + resource: '@BecklynTranslationsBundle/Resources/config/routes.yaml' + prefix: /_v/translations/ diff --git a/becklyn/translations/1.0/manifest.json b/becklyn/translations/1.0/manifest.json new file mode 100644 index 00000000..537b7314 --- /dev/null +++ b/becklyn/translations/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Becklyn\\Translations\\BecklynTranslationsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 2ac7d28fad17c3f0d0b380cd5d80e01aba2501fb Mon Sep 17 00:00:00 2001 From: Jannik Zschiesche Date: Mon, 9 Sep 2019 10:56:54 +0200 Subject: [PATCH 013/394] Add becklyn/javascript-routing bundle --- .../1.0/config/routes/becklyn_javascript_routing.yaml | 3 +++ becklyn/javascript-routing/1.0/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml create mode 100644 becklyn/javascript-routing/1.0/manifest.json diff --git a/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml b/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml new file mode 100644 index 00000000..ecffc565 --- /dev/null +++ b/becklyn/javascript-routing/1.0/config/routes/becklyn_javascript_routing.yaml @@ -0,0 +1,3 @@ +_import.becklyn_javascript_routing: + resource: '@BecklynJavaScriptRoutingBundle/Resources/config/routes.yaml' + prefix: /_v/routing diff --git a/becklyn/javascript-routing/1.0/manifest.json b/becklyn/javascript-routing/1.0/manifest.json new file mode 100644 index 00000000..a3439073 --- /dev/null +++ b/becklyn/javascript-routing/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Becklyn\\JavaScriptRouting\\BecklynJavaScriptRoutingBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 66c85c89a59b0be3b3c43e8a02bf55617801c8f7 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 13:50:54 +0300 Subject: [PATCH 014/394] feat(bundle): register new bundle @ArtoxLabClarcBundle US-30728 --- artox-lab/clarc-bundle/0.0.1/manifest.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 artox-lab/clarc-bundle/0.0.1/manifest.json diff --git a/artox-lab/clarc-bundle/0.0.1/manifest.json b/artox-lab/clarc-bundle/0.0.1/manifest.json new file mode 100644 index 00000000..98c7a1d7 --- /dev/null +++ b/artox-lab/clarc-bundle/0.0.1/manifest.json @@ -0,0 +1,16 @@ +{ + "bundles": { + "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] + }, + "copy-from-package": { + "Layers/Entities/": "%SRC_DIR%/Domain/", + "Layers/UseCases/": "%SRC_DIR%/UseCases/", + "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", + "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" + }, + "gitignore": [ + ".env", + "/.idea/", + ".DS_Store" + ] +} From 0af3b7b62b106fed833434ebf3c8ef13ea236ab3 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 13:53:59 +0300 Subject: [PATCH 015/394] fix(version): rename version to valid X.X format US-30728 --- artox-lab/clarc-bundle/{0.0.1 => 0.1}/manifest.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename artox-lab/clarc-bundle/{0.0.1 => 0.1}/manifest.json (100%) diff --git a/artox-lab/clarc-bundle/0.0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json similarity index 100% rename from artox-lab/clarc-bundle/0.0.1/manifest.json rename to artox-lab/clarc-bundle/0.1/manifest.json From 7abbbce119b00751545ec4390cfe9d80ba6e806f Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Tue, 10 Sep 2019 15:05:41 +0300 Subject: [PATCH 016/394] fix(layers): rename layer Domain to Entities US-30728 --- artox-lab/clarc-bundle/0.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index 98c7a1d7..d99f3ff0 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -3,7 +3,7 @@ "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] }, "copy-from-package": { - "Layers/Entities/": "%SRC_DIR%/Domain/", + "Layers/Entities/": "%SRC_DIR%/Entities/", "Layers/UseCases/": "%SRC_DIR%/UseCases/", "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" From f2d792e865560b6711451e4ca4080d182af761e8 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Wed, 11 Sep 2019 18:21:21 +0300 Subject: [PATCH 017/394] feat(config): add configuration for bundle to recipe US-30728 --- .../clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml | 4 ++++ artox-lab/clarc-bundle/0.1/manifest.json | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml diff --git a/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml new file mode 100644 index 00000000..f72086be --- /dev/null +++ b/artox-lab/clarc-bundle/0.1/config/packages/artox_lab_clarc.yaml @@ -0,0 +1,4 @@ +artox_lab_clarc: + api: + serializer: + class: \ArtoxLab\Bundle\ClarcBundle\Core\Interfaces\UI\API\Transformers\Serializers\NullObjectArraySerializer diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index d99f3ff0..8cb5ca3c 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -2,6 +2,9 @@ "bundles": { "ArtoxLab\\Bundle\\ClarcBundle\\ArtoxLabClarcBundle": ["all"] }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, "copy-from-package": { "Layers/Entities/": "%SRC_DIR%/Entities/", "Layers/UseCases/": "%SRC_DIR%/UseCases/", From 4575194201ddba7df84b4436313e25617ae9a196 Mon Sep 17 00:00:00 2001 From: "Matthew J. Mucklo" Date: Fri, 13 Sep 2019 23:49:54 -0700 Subject: [PATCH 018/394] mmucklo/grid-bundle (5.0): Removed dependency on deprecated twig-engine --- mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml | 2 ++ mmucklo/grid-bundle/5.0/manifest.json | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml create mode 100644 mmucklo/grid-bundle/5.0/manifest.json diff --git a/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml b/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml new file mode 100644 index 00000000..29132d48 --- /dev/null +++ b/mmucklo/grid-bundle/5.0/config/routes/dtc_grid.yaml @@ -0,0 +1,2 @@ +dtc_grid: + resource: '@DtcGridBundle/Resources/config/routing.yml' diff --git a/mmucklo/grid-bundle/5.0/manifest.json b/mmucklo/grid-bundle/5.0/manifest.json new file mode 100644 index 00000000..d592f507 --- /dev/null +++ b/mmucklo/grid-bundle/5.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dtc\\GridBundle\\DtcGridBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/dtc_grid.yaml": "%CONFIG_DIR%/packages/dtc_grid.yaml" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From f28aa02c196c5e5963f364e10152b91964c9590b Mon Sep 17 00:00:00 2001 From: "tien.xuan.vo" Date: Sun, 22 Sep 2019 11:27:58 +0700 Subject: [PATCH 019/394] tienvx/mbt-api-bundle (1.12): Replace java and plantuml by dot --- .../1.12/config/packages/tienvx_mbt_api.yaml | 3 +++ .../1.12/config/routes/tienvx_mbt_api.yaml | 3 +++ tienvx/mbt-api-bundle/1.12/manifest.json | 12 ++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml create mode 100644 tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml create mode 100644 tienvx/mbt-api-bundle/1.12/manifest.json diff --git a/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml new file mode 100644 index 00000000..9988a290 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/config/packages/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + dot_binary: '%env(DOT_BINARY)%' + console_binary: '%env(CONSOLE_BINARY)%' diff --git a/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml new file mode 100644 index 00000000..d1ee11b4 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/config/routes/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + resource: '@TienvxMbtApiBundle/Resources/config/routing.xml' + prefix: '/mbt-api' diff --git a/tienvx/mbt-api-bundle/1.12/manifest.json b/tienvx/mbt-api-bundle/1.12/manifest.json new file mode 100644 index 00000000..cead8998 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.12/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtApiBundle\\TienvxMbtApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOT_BINARY": "dot", + "CONSOLE_BINARY": "bin/console" + } +} From dc2629aa1d252f9cd1fd128d684f82cc1e36627e Mon Sep 17 00:00:00 2001 From: Erol Uysal Date: Sun, 22 Sep 2019 23:49:19 +0300 Subject: [PATCH 020/394] added environment variables and changed connection client --- .../elastica-bundle/5.0/config/packages/fos_elastica.yaml | 2 +- friendsofsymfony/elastica-bundle/5.0/manifest.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml index 23b3a500..54f7abd3 100644 --- a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml +++ b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml @@ -1,6 +1,6 @@ # Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/Resources/doc/setup.md fos_elastica: clients: - default: { host: localhost, port: 9200 } + default: { url: '%env(ELASTICSEARCH_URL)%' } indexes: app: null diff --git a/friendsofsymfony/elastica-bundle/5.0/manifest.json b/friendsofsymfony/elastica-bundle/5.0/manifest.json index 80328c99..43db785d 100644 --- a/friendsofsymfony/elastica-bundle/5.0/manifest.json +++ b/friendsofsymfony/elastica-bundle/5.0/manifest.json @@ -4,5 +4,8 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "ELASTICSEARCH_URL": "http://localhost:9200/" } } From 3b648467db712c6d3e1d9f462d8927949faa4b0f Mon Sep 17 00:00:00 2001 From: Alex Rock Ancelet Date: Wed, 25 Sep 2019 10:04:00 +0200 Subject: [PATCH 021/394] Add Zendesk API recipe --- .../2.2/config/packages/zendesk_api_client.yaml | 6 ++++++ zendesk/zendesk_api_client_php/2.2/manifest.json | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml create mode 100644 zendesk/zendesk_api_client_php/2.2/manifest.json diff --git a/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml b/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml new file mode 100644 index 00000000..a60b2beb --- /dev/null +++ b/zendesk/zendesk_api_client_php/2.2/config/packages/zendesk_api_client.yaml @@ -0,0 +1,6 @@ +services: + Zendesk\API\HttpClient: + arguments: + - '%env(ZENDESK_API_SUBDOMAIN)%' + calls: + - ['setAuth', ['basic', { username: '%env(ZENDESK_API_USERNAME)%', token: '%env(ZENDESK_API_TOKEN)%' }]] diff --git a/zendesk/zendesk_api_client_php/2.2/manifest.json b/zendesk/zendesk_api_client_php/2.2/manifest.json new file mode 100644 index 00000000..8aefc221 --- /dev/null +++ b/zendesk/zendesk_api_client_php/2.2/manifest.json @@ -0,0 +1,12 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#0": "To retrieve an API token for your Zendesk server, you can read this doc:", + "#1": "https://support.zendesk.com/hc/en-us/articles/226022787-Generating-a-new-API-token-", + "ZENDESK_API_SUBDOMAIN": "", + "ZENDESK_API_USERNAME": "", + "ZENDESK_API_TOKEN": "" + } +} From 772c15fcd17644f589a58175d24fc59831a4a259 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Thu, 26 Sep 2019 18:23:01 +0000 Subject: [PATCH 022/394] * Update recipre coka/file-bundle. * Add a recipe for coka/rate-limit-bundle version 1.0. --- coka/file-bundle/3.0/config/packages/oka_file.yaml | 1 - coka/file-bundle/3.0/manifest.json | 1 - .../1.0/config/packages/oka_rate_limit.yaml | 3 +++ coka/rate-limit-bundle/1.0/manifest.json | 8 ++++++++ 4 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml create mode 100644 coka/rate-limit-bundle/1.0/manifest.json diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index c2d81c1e..589525ed 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -4,4 +4,3 @@ oka_file: root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' webserver: host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' - diff --git a/coka/file-bundle/3.0/manifest.json b/coka/file-bundle/3.0/manifest.json index 819a632e..e4f6ecdd 100644 --- a/coka/file-bundle/3.0/manifest.json +++ b/coka/file-bundle/3.0/manifest.json @@ -10,4 +10,3 @@ "OKAFILE_STORAGE_WEB_SERVER_HOST": "localhost" } } - diff --git a/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml new file mode 100644 index 00000000..4ab2217b --- /dev/null +++ b/coka/rate-limit-bundle/1.0/config/packages/oka_rate_limit.yaml @@ -0,0 +1,3 @@ +oka_rate_limit: + configs: + - {path: ''} diff --git a/coka/rate-limit-bundle/1.0/manifest.json b/coka/rate-limit-bundle/1.0/manifest.json new file mode 100644 index 00000000..a977cdec --- /dev/null +++ b/coka/rate-limit-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RateLimitBundle\\OkaRateLimitBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4909ad76271db3aa78dc7a7fc631f8f3cd0c06f2 Mon Sep 17 00:00:00 2001 From: Julien Deniau Date: Fri, 27 Sep 2019 09:58:08 +0200 Subject: [PATCH 023/394] mapado/rest-client-sdk-bundle : Move from "old" configuration to env variable --- .../0.24/config/packages/mapado_rest_client_sdk.yaml | 2 +- mapado/rest-client-sdk-bundle/0.24/manifest.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml b/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml index 13d57ec6..e8dadda7 100644 --- a/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml +++ b/mapado/rest-client-sdk-bundle/0.24/config/packages/mapado_rest_client_sdk.yaml @@ -1,6 +1,6 @@ mapado_rest_client_sdk: entity_managers: foo: - server_url: 'https://my-api.com:8080' + server_url: '%env(MAPADO_REST_CLIENT_SDK_SERVER_URL)%' mappings: dir: '%kernel.project_dir%/src/Entity/' diff --git a/mapado/rest-client-sdk-bundle/0.24/manifest.json b/mapado/rest-client-sdk-bundle/0.24/manifest.json index c30b128b..8f418867 100644 --- a/mapado/rest-client-sdk-bundle/0.24/manifest.json +++ b/mapado/rest-client-sdk-bundle/0.24/manifest.json @@ -5,5 +5,8 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "src/": "%SRC_DIR%/" + }, + "env": { + "MAPADO_REST_CLIENT_SDK_SERVER_URL": "https://my-api.com:8080" } } From 20b34dfe85e579510dc921ccd3b88ced33162126 Mon Sep 17 00:00:00 2001 From: "nikos.sotiropoulos" Date: Fri, 27 Sep 2019 12:38:59 +0200 Subject: [PATCH 024/394] commercetools/symfony-bundle fix dot env defautls --- commercetools/symfony-bundle/0.4/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commercetools/symfony-bundle/0.4/manifest.json b/commercetools/symfony-bundle/0.4/manifest.json index 457cf97e..42291c6e 100644 --- a/commercetools/symfony-bundle/0.4/manifest.json +++ b/commercetools/symfony-bundle/0.4/manifest.json @@ -11,8 +11,8 @@ "CTP_CLIENT_ID": "", "CTP_CLIENT_SECRET": "", "CTP_PROJECT_KEY": "", - "CTP_AUTH_URL": "https://auth.commercetools.com or https://auth.commercetools.co", - "CTP_API_URL": "https://api.commercetools.com or https://api.commercetools.co", + "CTP_AUTH_URL": "https://auth.commercetools.com", + "CTP_API_URL": "https://api.commercetools.com", "CTP_SCOPES": "" } } From 8a2c4bc1a173d4edbe3b5fcceb4cd822093e5369 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 27 Sep 2019 18:42:25 +0000 Subject: [PATCH 025/394] * Improve env values configuration for oka_file bundle. --- coka/file-bundle/3.0/config/packages/oka_file.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index 589525ed..5f72a66d 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -1,6 +1,15 @@ +parameters: + # Adds a fallback OKAFILE_STORAGE_ROOT_PATH if the env var is not set. + # Adds a fallback OKAFILE_STORAGE_WEB_SERVER_HOST if the env var is not set. + # This allows you to run cache:warmup even if your + # environment variables are not available yet. + # You should not need to change this value. + env(OKAFILE_STORAGE_ROOT_PATH): '%kernel.project_dir%/public' + env(OKAFILE_STORAGE_WEB_SERVER_HOST): 'localhost' + oka_file: db_driver: orm storage: - root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' + root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%' webserver: - host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' + host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%' From 12f1ca2482a9603a454da9329ddd15f227332e43 Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Sun, 29 Sep 2019 20:34:31 +0300 Subject: [PATCH 026/394] add Timiki RpcServerBundle, RpcClientBundle --- .../4.0/config/packages/rpc_client.yaml | 9 +++++ timiki/rpc-client-bundle/4.0/manifest.json | 9 +++++ .../4.0/config/packages/rpc_server.yaml | 33 +++++++++++++++++++ .../4.0/config/routes/rpc_server.yaml | 4 +++ timiki/rpc-server-bundle/4.0/manifest.json | 10 ++++++ .../4.0/src/Method/.gitignore | 0 6 files changed, 65 insertions(+) create mode 100644 timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml create mode 100644 timiki/rpc-client-bundle/4.0/manifest.json create mode 100644 timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml create mode 100644 timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml create mode 100644 timiki/rpc-server-bundle/4.0/manifest.json create mode 100644 timiki/rpc-server-bundle/4.0/src/Method/.gitignore diff --git a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml new file mode 100644 index 00000000..09d197b6 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml @@ -0,0 +1,9 @@ +# Read the documentation: https://github.com/timiki/rpc-client-bundle + +rpc_client: + + # connection: + # name_1: RPC_SERVER_URL_1 + # name_2: RPC_SERVER_URL_2 + + connection: ~ \ No newline at end of file diff --git a/timiki/rpc-client-bundle/4.0/manifest.json b/timiki/rpc-client-bundle/4.0/manifest.json new file mode 100644 index 00000000..6bcb6e97 --- /dev/null +++ b/timiki/rpc-client-bundle/4.0/manifest.json @@ -0,0 +1,9 @@ +{ + "aliases": ["rpc-client", "timiki-rpc-client"], + "bundles": { + "Timiki\\Bundle\\RpcClientBundle\\RpcClientBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml new file mode 100644 index 00000000..fec40994 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml @@ -0,0 +1,33 @@ +# Read the documentation: https://github.com/timiki/rpc-server-bundle + +rpc_server: + + # mapping configs + # + # Default mapping + # mapping: '%kernel.root_dir%/Method' + # + # Multi dir mapping + # mapping: + # - '%kernel.root_dir%/Method1' + # - '%kernel.root_dir%/Method2' + # + # Multi handler|dir mapping + # mapping: + # v1: + # - '%kernel.root_dir%/Method/V1' + # v2: + # - '%kernel.root_dir%/Method/V2' + # + + mapping: '%kernel.root_dir%/Method' + + # id cache service, must be instance of Doctrine\Common\Cache\CacheProvider + # by default use file cache + + cache: ~ + + # id serializer service, must be instance of Timiki\Bundle\RpcServerBundle\Serializer\SerializerInterface + # by default use 'rpc.server.serializer.base' service + + serializer: 'rpc.server.serializer.base' diff --git a/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml new file mode 100644 index 00000000..5d180cb9 --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml @@ -0,0 +1,4 @@ +rpc: + path: /rpc + defaults: { _controller: RpcServerBundle:Rpc:handler } + methods: [POST] \ No newline at end of file diff --git a/timiki/rpc-server-bundle/4.0/manifest.json b/timiki/rpc-server-bundle/4.0/manifest.json new file mode 100644 index 00000000..0fc1955e --- /dev/null +++ b/timiki/rpc-server-bundle/4.0/manifest.json @@ -0,0 +1,10 @@ +{ + "aliases": ["rpc-server", "timiki-rpc-server"], + "bundles": { + "Timiki\\Bundle\\RpcServerBundle\\RpcServerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/timiki/rpc-server-bundle/4.0/src/Method/.gitignore b/timiki/rpc-server-bundle/4.0/src/Method/.gitignore new file mode 100644 index 00000000..e69de29b From 4906ecf5240450e2901e914a20238d82b716a1a0 Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Sun, 29 Sep 2019 20:37:59 +0300 Subject: [PATCH 027/394] fix --- timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml index 09d197b6..9b9020b6 100644 --- a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml +++ b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml @@ -6,4 +6,4 @@ rpc_client: # name_1: RPC_SERVER_URL_1 # name_2: RPC_SERVER_URL_2 - connection: ~ \ No newline at end of file + connection: null \ No newline at end of file From af19f6441b26051ad26b912a1357f468c6a7a9dd Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Sun, 29 Sep 2019 20:38:31 +0300 Subject: [PATCH 028/394] fix manifests --- timiki/rpc-client-bundle/4.0/manifest.json | 1 - timiki/rpc-server-bundle/4.0/manifest.json | 1 - 2 files changed, 2 deletions(-) diff --git a/timiki/rpc-client-bundle/4.0/manifest.json b/timiki/rpc-client-bundle/4.0/manifest.json index 6bcb6e97..8e36a4b2 100644 --- a/timiki/rpc-client-bundle/4.0/manifest.json +++ b/timiki/rpc-client-bundle/4.0/manifest.json @@ -1,5 +1,4 @@ { - "aliases": ["rpc-client", "timiki-rpc-client"], "bundles": { "Timiki\\Bundle\\RpcClientBundle\\RpcClientBundle": ["all"] }, diff --git a/timiki/rpc-server-bundle/4.0/manifest.json b/timiki/rpc-server-bundle/4.0/manifest.json index 0fc1955e..0966a1b2 100644 --- a/timiki/rpc-server-bundle/4.0/manifest.json +++ b/timiki/rpc-server-bundle/4.0/manifest.json @@ -1,5 +1,4 @@ { - "aliases": ["rpc-server", "timiki-rpc-server"], "bundles": { "Timiki\\Bundle\\RpcServerBundle\\RpcServerBundle": ["all"] }, From b0ce0be6550c3557ae397c6020056f32bc768ead Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Sun, 29 Sep 2019 20:39:20 +0300 Subject: [PATCH 029/394] fix yaml --- timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml | 2 +- timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml index 9b9020b6..f4f1c677 100644 --- a/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml +++ b/timiki/rpc-client-bundle/4.0/config/packages/rpc_client.yaml @@ -6,4 +6,4 @@ rpc_client: # name_1: RPC_SERVER_URL_1 # name_2: RPC_SERVER_URL_2 - connection: null \ No newline at end of file + connection: null diff --git a/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml index 5d180cb9..134ab17e 100644 --- a/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml +++ b/timiki/rpc-server-bundle/4.0/config/routes/rpc_server.yaml @@ -1,4 +1,4 @@ rpc: path: /rpc defaults: { _controller: RpcServerBundle:Rpc:handler } - methods: [POST] \ No newline at end of file + methods: [POST] From b216963e0fdd3181709e4170f27fb337f7b4df5f Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Sun, 29 Sep 2019 20:40:06 +0300 Subject: [PATCH 030/394] fix config --- timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml index fec40994..e0f786dd 100644 --- a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml +++ b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml @@ -25,7 +25,7 @@ rpc_server: # id cache service, must be instance of Doctrine\Common\Cache\CacheProvider # by default use file cache - cache: ~ + cache: null # id serializer service, must be instance of Timiki\Bundle\RpcServerBundle\Serializer\SerializerInterface # by default use 'rpc.server.serializer.base' service From 8412bc10c47b644cf47bd2c87cd1d0c06f46dd90 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 30 Sep 2019 10:56:15 +0300 Subject: [PATCH 031/394] remove not required configurations --- .../2.2/config/packages/gpslab_domain_event.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml index 9af0e149..5969502a 100644 --- a/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml +++ b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml @@ -1,15 +1,3 @@ gpslab_domain_event: - # Event bus service - # Support 'listener_located', 'queue' or a custom service - bus: 'listener_located' - - # Event queue service - # Support 'pull_memory', 'subscribe_executing' or a custom service - queue: 'pull_memory' - - # Event listener locator - # Support 'symfony', 'container', 'direct_binding' or custom service - locator: 'symfony' - # Publish domain events post a Doctrine flush event publish_on_flush: true From 2ef079f2e4b41d699f97e6397578842fb92e5bb7 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 30 Sep 2019 12:08:58 +0300 Subject: [PATCH 032/394] add link to Configuration section in README.md --- .../2.2/config/packages/gpslab_domain_event.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml index 5969502a..a994c908 100644 --- a/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml +++ b/gpslab/domain-event-bundle/2.2/config/packages/gpslab_domain_event.yaml @@ -1,3 +1,5 @@ +# see https://github.com/gpslab/domain-event-bundle/blob/master/README.md#configuration + gpslab_domain_event: # Publish domain events post a Doctrine flush event publish_on_flush: true From 55d03aa7e91b64f189e92a85172ff6c26247ffde Mon Sep 17 00:00:00 2001 From: Benoit GALATI Date: Wed, 2 Oct 2019 14:29:20 +0200 Subject: [PATCH 033/394] Update snc_redis.yaml --- snc/redis-bundle/2.0/config/packages/snc_redis.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snc/redis-bundle/2.0/config/packages/snc_redis.yaml b/snc/redis-bundle/2.0/config/packages/snc_redis.yaml index c56e1dc4..fd0941fe 100644 --- a/snc/redis-bundle/2.0/config/packages/snc_redis.yaml +++ b/snc/redis-bundle/2.0/config/packages/snc_redis.yaml @@ -7,6 +7,6 @@ snc_redis: # how to configure the bundle. # # default: -# type: predis +# type: phpredis # alias: default # dsn: "%env(REDIS_URL)%" From ecbf1855204896131d9da5755ef1500130a32a9a Mon Sep 17 00:00:00 2001 From: imper Date: Fri, 4 Oct 2019 12:10:55 +0200 Subject: [PATCH 034/394] imper86/allegro-api-bundle recipe --- .../2.0/config/packages/imper86_allegro_api.yaml | 4 ++++ imper86/allegro-api-bundle/2.0/manifest.json | 12 ++++++++++++ imper86/allegro-api-bundle/2.0/post-install.txt | 9 +++++++++ 3 files changed, 25 insertions(+) create mode 100644 imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml create mode 100644 imper86/allegro-api-bundle/2.0/manifest.json create mode 100644 imper86/allegro-api-bundle/2.0/post-install.txt diff --git a/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml new file mode 100644 index 00000000..f921985f --- /dev/null +++ b/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml @@ -0,0 +1,4 @@ +imper86_allegro_api: + sandbox: true + client_id: '%env(ALLEGRO_CLIENT_ID)%' + client_secret: '%env(ALLEGRO_CLIENT_SECRET)%' diff --git a/imper86/allegro-api-bundle/2.0/manifest.json b/imper86/allegro-api-bundle/2.0/manifest.json new file mode 100644 index 00000000..e178b69f --- /dev/null +++ b/imper86/allegro-api-bundle/2.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Imper86\\AllegroApiBundle\\Imper86AllegroApiBundle": ["all"] + }, + "env": { + "ALLEGRO_CLIENT_ID": "your_client_id", + "ALLEGRO_CLIENT_SECRET": "your_client_secret" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/allegro-api-bundle/2.0/post-install.txt b/imper86/allegro-api-bundle/2.0/post-install.txt new file mode 100644 index 00000000..d5ced913 --- /dev/null +++ b/imper86/allegro-api-bundle/2.0/post-install.txt @@ -0,0 +1,9 @@ + + Allegro API - next steps + + + * Register your application by visiting https://apps.developer.allegro.pl/ or https://apps.developer.allegro.pl.allegrosandbox.pl/ + * Edit .env.local with your client id and client secret + * Configure bundle - imper86_allegro_api.yaml in your config/packages directory + * Do make:migration or doctrine:schema:update for bundle's entities + * Start using visiting /allegro-api/start - this route will prepare allegro authorization url and will redirect you to allegro login page From 046c95c2a5b0fe4eace394337ecdcfb74d3095fb Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 4 Oct 2019 10:34:22 +0000 Subject: [PATCH 035/394] * Fix bad pull request. --- coka/file-bundle/3.0/config/packages/oka_file.yaml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index 5f72a66d..589525ed 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -1,15 +1,6 @@ -parameters: - # Adds a fallback OKAFILE_STORAGE_ROOT_PATH if the env var is not set. - # Adds a fallback OKAFILE_STORAGE_WEB_SERVER_HOST if the env var is not set. - # This allows you to run cache:warmup even if your - # environment variables are not available yet. - # You should not need to change this value. - env(OKAFILE_STORAGE_ROOT_PATH): '%kernel.project_dir%/public' - env(OKAFILE_STORAGE_WEB_SERVER_HOST): 'localhost' - oka_file: db_driver: orm storage: - root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%' + root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' webserver: - host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%' + host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' From 969bb8eb9299d2434649ddfde2f1bbe02b09811f Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Fri, 4 Oct 2019 16:02:54 +0000 Subject: [PATCH 036/394] * Add a recipe for coka/rest-request-validator-bundle version 1.0. --- .../1.0/config/packages/oka_rest_request_validator.yaml | 3 +++ coka/rest-request-validator-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml create mode 100644 coka/rest-request-validator-bundle/1.0/manifest.json diff --git a/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml new file mode 100644 index 00000000..b1d17858 --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/config/packages/oka_rest_request_validator.yaml @@ -0,0 +1,3 @@ +oka_rest_request_validator: + exception: + enabled: true diff --git a/coka/rest-request-validator-bundle/1.0/manifest.json b/coka/rest-request-validator-bundle/1.0/manifest.json new file mode 100644 index 00000000..aefe617f --- /dev/null +++ b/coka/rest-request-validator-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\RESTRequestValidatorBundle\\OkaRESTRequestValidatorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From c14f45118b9356dde409cf8e94b9254de5a43512 Mon Sep 17 00:00:00 2001 From: imper Date: Sat, 5 Oct 2019 12:56:58 +0200 Subject: [PATCH 037/394] imper86/allegro-api-bundle v3 recipe --- .../2.0/config/packages/imper86_allegro_api.yaml | 4 ---- .../3.0/config/packages/imper86_allegro_api.yaml | 2 ++ .../3.0/config/routes/imper86_allegro_api.yaml | 2 ++ imper86/allegro-api-bundle/{2.0 => 3.0}/manifest.json | 0 imper86/allegro-api-bundle/{2.0 => 3.0}/post-install.txt | 0 5 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml create mode 100644 imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml create mode 100644 imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml rename imper86/allegro-api-bundle/{2.0 => 3.0}/manifest.json (100%) rename imper86/allegro-api-bundle/{2.0 => 3.0}/post-install.txt (100%) diff --git a/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml deleted file mode 100644 index f921985f..00000000 --- a/imper86/allegro-api-bundle/2.0/config/packages/imper86_allegro_api.yaml +++ /dev/null @@ -1,4 +0,0 @@ -imper86_allegro_api: - sandbox: true - client_id: '%env(ALLEGRO_CLIENT_ID)%' - client_secret: '%env(ALLEGRO_CLIENT_SECRET)%' diff --git a/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml new file mode 100644 index 00000000..22ce313a --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/config/packages/imper86_allegro_api.yaml @@ -0,0 +1,2 @@ +imper86_allegro_api: + sandbox: true diff --git a/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml b/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml new file mode 100644 index 00000000..1331cc9a --- /dev/null +++ b/imper86/allegro-api-bundle/3.0/config/routes/imper86_allegro_api.yaml @@ -0,0 +1,2 @@ +imper86_allegro_api: + resource: '@Imper86AllegroApiBundle/Resources/config/routes.xml' diff --git a/imper86/allegro-api-bundle/2.0/manifest.json b/imper86/allegro-api-bundle/3.0/manifest.json similarity index 100% rename from imper86/allegro-api-bundle/2.0/manifest.json rename to imper86/allegro-api-bundle/3.0/manifest.json diff --git a/imper86/allegro-api-bundle/2.0/post-install.txt b/imper86/allegro-api-bundle/3.0/post-install.txt similarity index 100% rename from imper86/allegro-api-bundle/2.0/post-install.txt rename to imper86/allegro-api-bundle/3.0/post-install.txt From 440aa918d856643ec4db226d65f139dd85d74240 Mon Sep 17 00:00:00 2001 From: Artur Turchin Date: Sat, 5 Oct 2019 15:15:02 +0300 Subject: [PATCH 038/394] fix(remove gitignore from recipes (required by Nyholm in request)): remove gitignore from recipe Nyholm requested to removing gitignore from recipe review --- artox-lab/clarc-bundle/0.1/manifest.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/artox-lab/clarc-bundle/0.1/manifest.json b/artox-lab/clarc-bundle/0.1/manifest.json index 8cb5ca3c..bcc2701b 100644 --- a/artox-lab/clarc-bundle/0.1/manifest.json +++ b/artox-lab/clarc-bundle/0.1/manifest.json @@ -10,10 +10,5 @@ "Layers/UseCases/": "%SRC_DIR%/UseCases/", "Layers/Interfaces/": "%SRC_DIR%/Interfaces/", "Layers/Infrastructure/": "%SRC_DIR%/Infrastructure/" - }, - "gitignore": [ - ".env", - "/.idea/", - ".DS_Store" - ] + } } From 724730a1407a1debb8066d192851ee074bc9c5b9 Mon Sep 17 00:00:00 2001 From: imper Date: Sat, 5 Oct 2019 15:01:47 +0200 Subject: [PATCH 039/394] imper86/supervisor-bundle recipe --- .../2.2/config/packages/imper86_supervisor.yaml | 2 ++ imper86/supervisor-bundle/2.2/manifest.json | 8 ++++++++ imper86/supervisor-bundle/2.2/post-install.txt | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml create mode 100644 imper86/supervisor-bundle/2.2/manifest.json create mode 100644 imper86/supervisor-bundle/2.2/post-install.txt diff --git a/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml b/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml new file mode 100644 index 00000000..7bce322f --- /dev/null +++ b/imper86/supervisor-bundle/2.2/config/packages/imper86_supervisor.yaml @@ -0,0 +1,2 @@ +imper86_supervisor: + instances: [] diff --git a/imper86/supervisor-bundle/2.2/manifest.json b/imper86/supervisor-bundle/2.2/manifest.json new file mode 100644 index 00000000..29975e1e --- /dev/null +++ b/imper86/supervisor-bundle/2.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Imper86\\SupervisorBundle\\Imper86SupervisorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/supervisor-bundle/2.2/post-install.txt b/imper86/supervisor-bundle/2.2/post-install.txt new file mode 100644 index 00000000..41a75e9b --- /dev/null +++ b/imper86/supervisor-bundle/2.2/post-install.txt @@ -0,0 +1,6 @@ + + Supervisor bundle - next steps + + + * Configure instances in imper86_supervisor.yaml in your config/packages directory + * Create supervisor config with command ./bin/console i86:supervisor:rebuild From 4ddd44f698db097f3e312399f16b78d6e289a6c6 Mon Sep 17 00:00:00 2001 From: antishov Date: Wed, 9 Oct 2019 23:10:52 +0300 Subject: [PATCH 040/394] Added antishov/doctrine-extensions-bundle --- .../1.4/config/packages/stof_doctrine_extensions.yaml | 4 ++++ antishov/doctrine-extensions-bundle/1.4/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml create mode 100644 antishov/doctrine-extensions-bundle/1.4/manifest.json diff --git a/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml b/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml new file mode 100644 index 00000000..c83f3b1d --- /dev/null +++ b/antishov/doctrine-extensions-bundle/1.4/config/packages/stof_doctrine_extensions.yaml @@ -0,0 +1,4 @@ +# Read the documentation: https://symfony.com/doc/current/bundles/StofDoctrineExtensionsBundle/index.html +# See the official DoctrineExtensions documentation for more details: https://github.com/Atlantic18/DoctrineExtensions/tree/master/doc/ +stof_doctrine_extensions: + default_locale: en_US diff --git a/antishov/doctrine-extensions-bundle/1.4/manifest.json b/antishov/doctrine-extensions-bundle/1.4/manifest.json new file mode 100644 index 00000000..5cdd299e --- /dev/null +++ b/antishov/doctrine-extensions-bundle/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Stof\\DoctrineExtensionsBundle\\StofDoctrineExtensionsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 58be87a13edc603471f04a2d7e2c8f445c2939c8 Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Fri, 11 Oct 2019 14:42:09 +0200 Subject: [PATCH 041/394] add kibatic/timezone-bundle to the recipes-contrib --- .../timezone-bundle/1.0/config/kibatic_timezone.yaml | 3 +++ kibatic/timezone-bundle/1.0/manifest.json | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml create mode 100644 kibatic/timezone-bundle/1.0/manifest.json diff --git a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml new file mode 100644 index 00000000..cbfa15c8 --- /dev/null +++ b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml @@ -0,0 +1,3 @@ +kibatic_timezone: + default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' + timezone_provider: '%env(TIMEZONE_PROVIDER_SERVICE_ID)%' diff --git a/kibatic/timezone-bundle/1.0/manifest.json b/kibatic/timezone-bundle/1.0/manifest.json new file mode 100644 index 00000000..4cc8c04d --- /dev/null +++ b/kibatic/timezone-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Kibatic\\TimezoneBundle\\KibaticTimezoneBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DEFAULT_DISPLAY_TIMEZONE": "Europe/Paris", + "TIMEZONE_PROVIDER_SERVICE_ID": "kibatic_timezone.default_provider" + } +} From 36eb1f83426dc94ee8181a8f653ff46147ec8fe4 Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Fri, 11 Oct 2019 15:05:59 +0200 Subject: [PATCH 042/394] new push in order to run the CI. I just fix a deprecation in the bundle for sf4 --- kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml index cbfa15c8..b8bb94c3 100644 --- a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml +++ b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml @@ -1,3 +1,3 @@ kibatic_timezone: - default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' + default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' timezone_provider: '%env(TIMEZONE_PROVIDER_SERVICE_ID)%' From da906de77e2703f18b8fc1d3ccaa30b406f50fcb Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Sat, 12 Oct 2019 14:11:37 +0200 Subject: [PATCH 043/394] KunstmaanNodeBundle - Enable locking by default --- kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml diff --git a/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml new file mode 100644 index 00000000..9f8f2550 --- /dev/null +++ b/kunstmaan/node-bundle/5.2/config/packages/kunstmaan_node.yaml @@ -0,0 +1,3 @@ +kunstmaan_node: + lock: + enabled: true From 03079698ac93797992ee1c796e23d0b29e304775 Mon Sep 17 00:00:00 2001 From: Piou-piou Date: Sat, 12 Oct 2019 20:51:29 +0200 Subject: [PATCH 044/394] [func] add PiouPiou RibsCronBundle --- .../ribs-cron-bundle/1.0.0/config/ribs_cron.yaml | 3 +++ piou-piou/ribs-cron-bundle/1.0.0/manifest.json | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml create mode 100644 piou-piou/ribs-cron-bundle/1.0.0/manifest.json diff --git a/piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml new file mode 100644 index 00000000..2e38ee21 --- /dev/null +++ b/piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml @@ -0,0 +1,3 @@ +parameters: + data_directory: '%kernel.project_dir%/data/' + ribs_cron: diff --git a/piou-piou/ribs-cron-bundle/1.0.0/manifest.json b/piou-piou/ribs-cron-bundle/1.0.0/manifest.json new file mode 100644 index 00000000..12420d9c --- /dev/null +++ b/piou-piou/ribs-cron-bundle/1.0.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "PiouPiou\\RibsCronBundle\\RibsCronBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "IP_CRON_EXTERNAL": "", + "IP_CRON_INTERNAL": "127.0.0.1" + } +} From 200de7646d4b3f16cda610206a866589c963a63b Mon Sep 17 00:00:00 2001 From: Piou-piou Date: Sat, 12 Oct 2019 20:53:49 +0200 Subject: [PATCH 045/394] [edit] RibsCronBundle version dir --- nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml | 2 +- piou-piou/ribs-cron-bundle/{1.0.0 => 1.0}/config/ribs_cron.yaml | 0 piou-piou/ribs-cron-bundle/{1.0.0 => 1.0}/manifest.json | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename piou-piou/ribs-cron-bundle/{1.0.0 => 1.0}/config/ribs_cron.yaml (100%) rename piou-piou/ribs-cron-bundle/{1.0.0 => 1.0}/manifest.json (100%) diff --git a/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml b/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml index 4e684794..30767e1e 100644 --- a/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml +++ b/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml @@ -3,7 +3,7 @@ nelmio_api_doc: info: title: My App description: This is an awesome app! - version: 1.0.0 + version: 1.0 areas: # to filter documented areas path_patterns: - ^/api(?!/doc$) # Accepts routes under /api except /api/doc diff --git a/piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml similarity index 100% rename from piou-piou/ribs-cron-bundle/1.0.0/config/ribs_cron.yaml rename to piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml diff --git a/piou-piou/ribs-cron-bundle/1.0.0/manifest.json b/piou-piou/ribs-cron-bundle/1.0/manifest.json similarity index 100% rename from piou-piou/ribs-cron-bundle/1.0.0/manifest.json rename to piou-piou/ribs-cron-bundle/1.0/manifest.json From 208f8873a662144fcb30e944595f9bf929a55760 Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Sun, 13 Oct 2019 08:11:51 +0200 Subject: [PATCH 046/394] new push in order to run the CI again --- kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml index b8bb94c3..cbfa15c8 100644 --- a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml +++ b/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml @@ -1,3 +1,3 @@ kibatic_timezone: - default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' + default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' timezone_provider: '%env(TIMEZONE_PROVIDER_SERVICE_ID)%' From ec165369ea393a38fc806e8bf850fc6abc824a08 Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Sun, 13 Oct 2019 16:13:25 +0200 Subject: [PATCH 047/394] change directory --- .../1.0/config/{ => packages}/kibatic_timezone.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename kibatic/timezone-bundle/1.0/config/{ => packages}/kibatic_timezone.yaml (100%) diff --git a/kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml similarity index 100% rename from kibatic/timezone-bundle/1.0/config/kibatic_timezone.yaml rename to kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml From a968cc85b34d6d03a6b8264b5bcf11ea5d441491 Mon Sep 17 00:00:00 2001 From: Philippe Le Van Date: Sun, 13 Oct 2019 19:09:22 +0200 Subject: [PATCH 048/394] without vars --- .../timezone-bundle/1.0/config/packages/kibatic_timezone.yaml | 4 ++-- kibatic/timezone-bundle/1.0/manifest.json | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml b/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml index cbfa15c8..116ebf29 100644 --- a/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml +++ b/kibatic/timezone-bundle/1.0/config/packages/kibatic_timezone.yaml @@ -1,3 +1,3 @@ kibatic_timezone: - default_display_timezone: '%env(DEFAULT_DISPLAY_TIMEZONE)%' - timezone_provider: '%env(TIMEZONE_PROVIDER_SERVICE_ID)%' + default_display_timezone: 'Europe/Paris' + timezone_provider: 'kibatic_timezone.default_provider' diff --git a/kibatic/timezone-bundle/1.0/manifest.json b/kibatic/timezone-bundle/1.0/manifest.json index 4cc8c04d..c8d3cfd9 100644 --- a/kibatic/timezone-bundle/1.0/manifest.json +++ b/kibatic/timezone-bundle/1.0/manifest.json @@ -4,9 +4,5 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - }, - "env": { - "DEFAULT_DISPLAY_TIMEZONE": "Europe/Paris", - "TIMEZONE_PROVIDER_SERVICE_ID": "kibatic_timezone.default_provider" } } From e2905b1f3ab2d7c1e2701e29ea79a960b6dba383 Mon Sep 17 00:00:00 2001 From: BoShurik Date: Wed, 16 Oct 2019 16:15:57 +0300 Subject: [PATCH 049/394] Recipe for boshurik/telegram-bot-bundle --- .../3.1/config/packages/boshurik_telegram_bot.yaml | 3 +++ .../3.1/config/routes/boshurik_telegram_bot.yaml | 3 +++ boshurik/telegram-bot-bundle/3.1/manifest.json | 14 ++++++++++++++ boshurik/telegram-bot-bundle/3.1/post-install.txt | 6 ++++++ 4 files changed, 26 insertions(+) create mode 100644 boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml create mode 100644 boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml create mode 100644 boshurik/telegram-bot-bundle/3.1/manifest.json create mode 100644 boshurik/telegram-bot-bundle/3.1/post-install.txt diff --git a/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml b/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml new file mode 100644 index 00000000..81f53c18 --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/config/packages/boshurik_telegram_bot.yaml @@ -0,0 +1,3 @@ +boshurik_telegram_bot: + api: + token: "%env(TELEGRAM_BOT_TOKEN)%" diff --git a/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml b/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml new file mode 100644 index 00000000..f1071ece --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/config/routes/boshurik_telegram_bot.yaml @@ -0,0 +1,3 @@ +boshurik_telegram_bot_routing: + resource: "@BoShurikTelegramBotBundle/Resources/config/routing.yml" + prefix: "/_telegram/%telegram_route_secret%" diff --git a/boshurik/telegram-bot-bundle/3.1/manifest.json b/boshurik/telegram-bot-bundle/3.1/manifest.json new file mode 100644 index 00000000..eb3c11fa --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "BoShurik\\TelegramBotBundle\\BoShurikTelegramBotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TELEGRAM_BOT_TOKEN": "bot-token" + }, + "container": { + "telegram_route_secret": "%env(TELEGRAM_BOT_TOKEN)%" + } +} diff --git a/boshurik/telegram-bot-bundle/3.1/post-install.txt b/boshurik/telegram-bot-bundle/3.1/post-install.txt new file mode 100644 index 00000000..48438772 --- /dev/null +++ b/boshurik/telegram-bot-bundle/3.1/post-install.txt @@ -0,0 +1,6 @@ + + Next for TelegramBotBundle + + + * Set TELEGRAM_BOT_TOKEN in your environment + * Read the documentation at https://github.com/BoShurik/TelegramBotBundle From d61a6c2cdde7e584b43f6c7b7a881941408970b4 Mon Sep 17 00:00:00 2001 From: "n.netesin" Date: Fri, 18 Oct 2019 15:41:13 +0300 Subject: [PATCH 050/394] fix long comment --- .../4.0/config/packages/rpc_server.yaml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml index e0f786dd..8c5042d4 100644 --- a/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml +++ b/timiki/rpc-server-bundle/4.0/config/packages/rpc_server.yaml @@ -2,24 +2,6 @@ rpc_server: - # mapping configs - # - # Default mapping - # mapping: '%kernel.root_dir%/Method' - # - # Multi dir mapping - # mapping: - # - '%kernel.root_dir%/Method1' - # - '%kernel.root_dir%/Method2' - # - # Multi handler|dir mapping - # mapping: - # v1: - # - '%kernel.root_dir%/Method/V1' - # v2: - # - '%kernel.root_dir%/Method/V2' - # - mapping: '%kernel.root_dir%/Method' # id cache service, must be instance of Doctrine\Common\Cache\CacheProvider From 7b766911d25aa03079615ea283b9c5b2869504e7 Mon Sep 17 00:00:00 2001 From: insidestyles Date: Sat, 19 Oct 2019 07:42:21 +0300 Subject: [PATCH 051/394] Recipe for insidestyles/json-rpc-bundle V2 --- .../2.0/config/packages/json_rpc_api.yaml | 14 ++++++++++++++ .../2.0/config/routes/json_rpc_api_routing.yaml | 3 +++ insidestyles/json-rpc-bundle/2.0/manifest.json | 8 ++++++++ 3 files changed, 25 insertions(+) create mode 100644 insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml create mode 100644 insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml create mode 100644 insidestyles/json-rpc-bundle/2.0/manifest.json diff --git a/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml new file mode 100644 index 00000000..8e4b5906 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/packages/json_rpc_api.yaml @@ -0,0 +1,14 @@ +json_rpc_api: + handlers: + auth: + path: /auth + host: null + serializer: null + logger: null + annotation: null + main: + path: /api/v1 + host: null + serializer: null + logger: null + annotation: null diff --git a/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml new file mode 100644 index 00000000..708ed680 --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/config/routes/json_rpc_api_routing.yaml @@ -0,0 +1,3 @@ +_json_rpc_api: + resource: . + type: json_rpc_api diff --git a/insidestyles/json-rpc-bundle/2.0/manifest.json b/insidestyles/json-rpc-bundle/2.0/manifest.json new file mode 100644 index 00000000..68dac51e --- /dev/null +++ b/insidestyles/json-rpc-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Insidestyles\\JsonRpcBundle\\JsonRpcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 8e53df6d32c27c58f937ad48df207a48aa90b079 Mon Sep 17 00:00:00 2001 From: Piou-piou Date: Sat, 19 Oct 2019 10:49:14 +0200 Subject: [PATCH 052/394] Revert "[edit] RibsCronBundle version dir" This reverts commit 200de764 --- nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml b/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml index 30767e1e..4e684794 100644 --- a/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml +++ b/nelmio/api-doc-bundle/3.0/config/packages/nelmio_api_doc.yaml @@ -3,7 +3,7 @@ nelmio_api_doc: info: title: My App description: This is an awesome app! - version: 1.0 + version: 1.0.0 areas: # to filter documented areas path_patterns: - ^/api(?!/doc$) # Accepts routes under /api except /api/doc From 4f5b67785a4a791238343b3d2a25b851b28b63c9 Mon Sep 17 00:00:00 2001 From: Anthony Pilloud Date: Sat, 19 Oct 2019 11:18:14 +0200 Subject: [PATCH 053/394] [del] remove bad environment variables --- piou-piou/ribs-cron-bundle/1.0/manifest.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/piou-piou/ribs-cron-bundle/1.0/manifest.json b/piou-piou/ribs-cron-bundle/1.0/manifest.json index 12420d9c..3950b869 100644 --- a/piou-piou/ribs-cron-bundle/1.0/manifest.json +++ b/piou-piou/ribs-cron-bundle/1.0/manifest.json @@ -4,9 +4,5 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - }, - "env": { - "IP_CRON_EXTERNAL": "", - "IP_CRON_INTERNAL": "127.0.0.1" } } From ce17ff8df61ca3ee307c7514ad147d3c2c595e89 Mon Sep 17 00:00:00 2001 From: Anthony Pilloud Date: Sat, 19 Oct 2019 11:20:00 +0200 Subject: [PATCH 054/394] [edit] ribs cron config file --- piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml index 2e38ee21..e0f2bebc 100644 --- a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml +++ b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml @@ -1,3 +1,6 @@ parameters: - data_directory: '%kernel.project_dir%/data/' - ribs_cron: + data_directory: '%kernel.project_dir%/data/' + ribs_cron_ip_external: + ribs_cron_ip_internal: "127.0.0.1" + ribs_cron: +# testCronCall: "* * * * *" From 023e0435b52aac26dc716bc4eba5246292099442 Mon Sep 17 00:00:00 2001 From: Anthony Pilloud Date: Sat, 19 Oct 2019 11:21:30 +0200 Subject: [PATCH 055/394] [fix] space in ribs_cron --- piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml index e0f2bebc..9374fc0f 100644 --- a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml +++ b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml @@ -1,6 +1,6 @@ parameters: - data_directory: '%kernel.project_dir%/data/' - ribs_cron_ip_external: - ribs_cron_ip_internal: "127.0.0.1" - ribs_cron: -# testCronCall: "* * * * *" + data_directory: '%kernel.project_dir%/data/' + ribs_cron_ip_external: + ribs_cron_ip_internal: "127.0.0.1" + ribs_cron: +# testCronCall: "* * * * *" From 1b3c1e772ffe2ea9da483c9bcee4e6ff5195e2c2 Mon Sep 17 00:00:00 2001 From: Piou-piou Date: Sat, 19 Oct 2019 20:05:02 +0200 Subject: [PATCH 056/394] [edit] environment variables to use them in yaml config file --- piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml | 6 +++--- piou-piou/ribs-cron-bundle/1.0/manifest.json | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml index 9374fc0f..1f11a49f 100644 --- a/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml +++ b/piou-piou/ribs-cron-bundle/1.0/config/ribs_cron.yaml @@ -1,6 +1,6 @@ parameters: data_directory: '%kernel.project_dir%/data/' - ribs_cron_ip_external: - ribs_cron_ip_internal: "127.0.0.1" + ribs_cron_ip_external: '%env(IP_CRON_EXTERNAL)%' + ribs_cron_ip_internal: '%env(IP_CRON_INTERNAL)%' ribs_cron: -# testCronCall: "* * * * *" +# testCronCall: '* * * * *' diff --git a/piou-piou/ribs-cron-bundle/1.0/manifest.json b/piou-piou/ribs-cron-bundle/1.0/manifest.json index 3950b869..12420d9c 100644 --- a/piou-piou/ribs-cron-bundle/1.0/manifest.json +++ b/piou-piou/ribs-cron-bundle/1.0/manifest.json @@ -4,5 +4,9 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "IP_CRON_EXTERNAL": "", + "IP_CRON_INTERNAL": "127.0.0.1" } } From 9bb5bd1050954ec92601ad117af91d53f1b60853 Mon Sep 17 00:00:00 2001 From: Fred Cox Date: Mon, 21 Oct 2019 17:28:32 +0300 Subject: [PATCH 057/394] Add ekreative/health-check-bundle --- .../config/routes/ekreative_health_check.yaml | 2 ++ ekreative/health-check-bundle/1.5/manifest.json | 8 ++++++++ .../health-check-bundle/1.5/post-install.txt | 17 +++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml create mode 100644 ekreative/health-check-bundle/1.5/manifest.json create mode 100644 ekreative/health-check-bundle/1.5/post-install.txt diff --git a/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml b/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml new file mode 100644 index 00000000..6ca4630a --- /dev/null +++ b/ekreative/health-check-bundle/1.5/config/routes/ekreative_health_check.yaml @@ -0,0 +1,2 @@ +ekreative_health_check: + resource: '@EkreativeHealthCheckBundle/Resources/config/routes.xml' diff --git a/ekreative/health-check-bundle/1.5/manifest.json b/ekreative/health-check-bundle/1.5/manifest.json new file mode 100644 index 00000000..98dc0484 --- /dev/null +++ b/ekreative/health-check-bundle/1.5/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Ekreative\\HealthCheckBundle\\EkreativeHealthCheckBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/ekreative/health-check-bundle/1.5/post-install.txt b/ekreative/health-check-bundle/1.5/post-install.txt new file mode 100644 index 00000000..7f725483 --- /dev/null +++ b/ekreative/health-check-bundle/1.5/post-install.txt @@ -0,0 +1,17 @@ + + Next: EkreativeHealthCheckBundle Configuration + + + * You can add more doctrine/redis connections to your config in config/packages/ekreative_health_check.yaml + + *. Add healthcheck firewall to config/security.yaml file + + +security: + firewalls: + healthcheck: + pattern: ^/healthcheck + security: false + + + * Read the documentation at https://github.com/ekreative/health-check-bundle From 237838c262ed913582e5b8e6a7814780cb5253ba Mon Sep 17 00:00:00 2001 From: Hendrik Pilz Date: Mon, 28 Oct 2019 21:34:23 +0100 Subject: [PATCH 058/394] rundum/event-base v0.0.1 recipe --- .../0.0.1/config/packages/rundum_event_base.yaml | 8 ++++++++ rundum/event-base/0.0.1/manifest.json | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml create mode 100644 rundum/event-base/0.0.1/manifest.json diff --git a/rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml b/rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml new file mode 100644 index 00000000..fe1b2e1c --- /dev/null +++ b/rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml @@ -0,0 +1,8 @@ +services: + _defaults: + autowire: true + autoconfigure: true + public: false + + rundum.event.entity.subscriber: + class: Rundum\EventSubscriber\EntityEventSubscriber diff --git a/rundum/event-base/0.0.1/manifest.json b/rundum/event-base/0.0.1/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/rundum/event-base/0.0.1/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From f3925f2843a65a0dd585e7863fd29c713dab2e52 Mon Sep 17 00:00:00 2001 From: Hendrik Pilz Date: Mon, 28 Oct 2019 21:44:02 +0100 Subject: [PATCH 059/394] rundum/event-base fixed version to 0.0 --- .../{0.0.1 => 0.0}/config/packages/rundum_event_base.yaml | 0 rundum/event-base/{0.0.1 => 0.0}/manifest.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename rundum/event-base/{0.0.1 => 0.0}/config/packages/rundum_event_base.yaml (100%) rename rundum/event-base/{0.0.1 => 0.0}/manifest.json (100%) diff --git a/rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml b/rundum/event-base/0.0/config/packages/rundum_event_base.yaml similarity index 100% rename from rundum/event-base/0.0.1/config/packages/rundum_event_base.yaml rename to rundum/event-base/0.0/config/packages/rundum_event_base.yaml diff --git a/rundum/event-base/0.0.1/manifest.json b/rundum/event-base/0.0/manifest.json similarity index 100% rename from rundum/event-base/0.0.1/manifest.json rename to rundum/event-base/0.0/manifest.json From 0cb3e9d57781e01d3ba8993ea4f3e645d5be3925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Tue, 5 Nov 2019 11:24:26 +0100 Subject: [PATCH 060/394] add gheb\docusign-bundle --- gheb/docusign-bundle/4.5/config/packages/docusign.yaml | 5 +++++ gheb/docusign-bundle/4.5/config/routes/docusign.yaml | 2 ++ gheb/docusign-bundle/4.5/manifest.json | 8 ++++++++ 3 files changed, 15 insertions(+) create mode 100644 gheb/docusign-bundle/4.5/config/packages/docusign.yaml create mode 100644 gheb/docusign-bundle/4.5/config/routes/docusign.yaml create mode 100644 gheb/docusign-bundle/4.5/manifest.json diff --git a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml new file mode 100644 index 00000000..6050ca85 --- /dev/null +++ b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml @@ -0,0 +1,5 @@ +docusign: + access_token: "YourAccessToken" + account_id: "yourAccountId" + default_signer_name: "Your Signer Name" + default_signer_email: "you@email.tld" diff --git a/gheb/docusign-bundle/4.5/config/routes/docusign.yaml b/gheb/docusign-bundle/4.5/config/routes/docusign.yaml new file mode 100644 index 00000000..2db355e1 --- /dev/null +++ b/gheb/docusign-bundle/4.5/config/routes/docusign.yaml @@ -0,0 +1,2 @@ +docusign: + resource: '@DocusignBundle/Resources/config/routing.xml' diff --git a/gheb/docusign-bundle/4.5/manifest.json b/gheb/docusign-bundle/4.5/manifest.json new file mode 100644 index 00000000..bdd9924e --- /dev/null +++ b/gheb/docusign-bundle/4.5/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "\\DocusignBundle\\DocusignBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From dc3147b6ea0552237efd067d8dec39cd3299ee3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Tue, 5 Nov 2019 11:27:23 +0100 Subject: [PATCH 061/394] fix indent --- gheb/docusign-bundle/4.5/config/routes/docusign.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/4.5/config/routes/docusign.yaml b/gheb/docusign-bundle/4.5/config/routes/docusign.yaml index 2db355e1..8de7cec6 100644 --- a/gheb/docusign-bundle/4.5/config/routes/docusign.yaml +++ b/gheb/docusign-bundle/4.5/config/routes/docusign.yaml @@ -1,2 +1,2 @@ docusign: - resource: '@DocusignBundle/Resources/config/routing.xml' + resource: '@DocusignBundle/Resources/config/routing.xml' From 34fb6da6b9ba45138ad919b92881146e10e11f82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Tue, 5 Nov 2019 11:30:48 +0100 Subject: [PATCH 062/394] update default configuration --- .../docusign-bundle/4.5/config/packages/docusign.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml index 6050ca85..f8144fce 100644 --- a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml @@ -3,3 +3,14 @@ docusign: account_id: "yourAccountId" default_signer_name: "Your Signer Name" default_signer_email: "you@email.tld" + signatures: + default_document_type: + signatures: + - page: 1 # default + x_position: 200 # top left corner in pixels + y_position: 400 # top left corner in pixels + storages: + docusign.storage: + adapter: 'local' + options: + directory: '%kernel.project_dir%/var/storage/default' From bb27de45e230a6be9772af5e29b745da783b1c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Tue, 5 Nov 2019 13:33:13 +0100 Subject: [PATCH 063/394] fix indent --- gheb/docusign-bundle/4.5/config/packages/docusign.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml index f8144fce..6ac6005d 100644 --- a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml @@ -7,8 +7,8 @@ docusign: default_document_type: signatures: - page: 1 # default - x_position: 200 # top left corner in pixels - y_position: 400 # top left corner in pixels + x_position: 200 # top left corner in pixels + y_position: 400 # top left corner in pixels storages: docusign.storage: adapter: 'local' From 6f3e537496beb1020a2f49445ee77cde701dc479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Tue, 5 Nov 2019 13:36:26 +0100 Subject: [PATCH 064/394] fix indent --- gheb/docusign-bundle/4.5/config/packages/docusign.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml index 6ac6005d..df6eb0cd 100644 --- a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml @@ -6,7 +6,8 @@ docusign: signatures: default_document_type: signatures: - - page: 1 # default + - + page: 1 # default x_position: 200 # top left corner in pixels y_position: 400 # top left corner in pixels storages: From 270f9770081e7f0c5a03f729395fd9554379688e Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Tue, 5 Nov 2019 16:47:43 +0100 Subject: [PATCH 065/394] add networking/init-cms-bundle recipe --- .../config/packages/networking_init_cms.yaml | 97 +++++++++++++ .../config/routes/networking_init_cms.yaml | 3 + networking/init-cms-bundle/4.0/manifest.json | 17 +++ .../init-cms-bundle/4.0/post-install.txt | 18 +++ .../4.0/serializer/Entity.Page.yaml | 77 ++++++++++ .../init-cms-bundle/4.0/src/Entity/Page.php | 132 ++++++++++++++++++ .../init-cms-bundle/4.0/src/Entity/User.php | 40 ++++++ 7 files changed, 384 insertions(+) create mode 100644 networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml create mode 100644 networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml create mode 100644 networking/init-cms-bundle/4.0/manifest.json create mode 100644 networking/init-cms-bundle/4.0/post-install.txt create mode 100644 networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml create mode 100644 networking/init-cms-bundle/4.0/src/Entity/Page.php create mode 100644 networking/init-cms-bundle/4.0/src/Entity/User.php diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml new file mode 100644 index 00000000..52963c15 --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -0,0 +1,97 @@ +imports: + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/doctrine.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/fos_ck_editor.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/fos_user.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/mopa_bootstrap.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/oneup_flysystem.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/oneup_uploader.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_admin.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_block.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_core.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_doctrine_admin.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_formatter.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_media.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_notification.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/sonata_user.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/stof_doctrine_extensions.yaml" } + - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/symfony_cmf_routing_extra.yaml" } +# Default security configuration +# - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/security.yaml" } + +# Set templating to twig. FOSUserBundle requires templating to be setup +framework: + templating: { engines: ['twig'] } + +# Set up the serializer to read config file for App Page and User entities +jms_serializer: + metadata: + directories: + NetworkingSonataMediaBundle: + namespace_prefix: "Sonata\\MediaBundle" + path: "@NetworkingInitCmsBundle/Resources/config/serializer" + app: + namespace_prefix: "App" + path: "%kernel.project_dir%/config/serializer" + +# Translation bundle configuration, swap environment variables if mange_locales_only option set to false +lexik_translation: + fallback_locale: '%env(LOCALE)%' # (required) default locale to use + managed_locales: [ '%env(LOCALE)%'] # !IMPORTANT: Change to strings and not environment variables + resources_registration: + type: all # all | files | database + managed_locales_only: false # set to true to only include managed_locales + + +networking_init_cms: + # Set a cookie in the fronted end for language. If disabled, the URL will be prefixed with the locale + allow_locale_cookie: true + + # Simple php based cache for caching the rendered HTML in the frontend + cache: + activate: true #default false + cache_time: 86400 #default value + cache_service_class: 'Networking\InitCmsBundle\Lib\PhpCache' #default value + + # Show admin toolbar when in the frontend + admin_toolbar: + toolbar: true #Default is activated + position: 'top' #Choices are 'top' or 'bottom' + translation_fallback_route: 'initcms_404' #Default fallback to 404 page + no_translation_template: '@NetworkingInitCms/no_translation_found.html.twig' # + 404_template: '@NetworkingInitCms/error_404.html.twig' #Fallback to a 404 page included + # Tag tree for use in the media manager + show_tag_tree: true #Default is true + multiple_media_tags: true #Default is true + + # Language set up, label is used in the default frontend language switcher menu + languages: + - {label: 'Deutsch', locale: 'de'} + - {label: 'English', locale: 'en'} + + # Add content types here + content_types: + - { name: 'Text' , class: 'Networking\InitCmsBundle\Entity\Text'} + - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} + + # Classes to be used for the page and user entities + class: + page: "App\\Entity\\Page" + user: "App\\Entity\\User" + + # Default template settings to get you started + templates: + 'app_single_column': + template: "@NetworkingInitCms/sandbox/page/one_column.html.twig" + name: "Single Column" + icon: "bundles/networkinginitcms/img/template_header_one_column.png" + zones: + - { name: header, class: 'col-md-12' } + - { name: main_content, class: 'col-md-12'} + 'app_two_column': + template: "@NetworkingInitCms/sandbox/page/two_column.html.twig" + name: "Two Column" + icon: "bundles/networkinginitcms/img/template_header_two_column.png" + zones: + - { name: header , class: 'col-md-12'} + - { name: left , class: 'col-md-3'} + - { name: right , class: 'col-md-9'} diff --git a/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml new file mode 100644 index 00000000..66940470 --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/routes/networking_init_cms.yaml @@ -0,0 +1,3 @@ +networking_init_cms: + resource: "@NetworkingInitCmsBundle/Resources/config/routing/routing.yaml" + prefix: / diff --git a/networking/init-cms-bundle/4.0/manifest.json b/networking/init-cms-bundle/4.0/manifest.json new file mode 100644 index 00000000..b5b084e0 --- /dev/null +++ b/networking/init-cms-bundle/4.0/manifest.json @@ -0,0 +1,17 @@ +{ + "bundles": { + "Networking\\InitCmsBundle\\NetworkingInitCmsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "serializer/": "%CONFIG_DIR%/serializer/", + "src/": "%SRC_DIR%/" + }, + "env": { + "LOCALE": "en" + }, + "composer-scripts": { + "ckeditor:install --clear=drop": "symfony-cmd", + "assets:install %PUBLIC_DIR%": "symfony-cmd" + } +} diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt new file mode 100644 index 00000000..96a5f7a1 --- /dev/null +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -0,0 +1,18 @@ + + What's next? + + + * The InitCmsBundle imports many configuration files, such as doctrine.yaml, security.yaml etc. In order + to ensure your app will work please do the following: + 1. Check that all files imported via the networking_init_cms.yaml file are not overwritten with a similar + configuration file in your /config/packages folder. !IMPORTANT the doctrine.yaml and security.yaml must be either + deleted, or configured along the lines of the provided default doctrine and security configs provided in the + bundle + 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly + 3. Clear the cache again so that the new config files are loaded correctly. + 4. Back up your database. + 5. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands + 6. Use the command networking:initcms:install to install setup the DB install fixtures and create a superuser admin + 7. OR you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures + 8. Enable or copy the security configuration file that is commented out in the networking_init_cms.yaml file + 9. Set up your managed languages for the lexik translation bundle diff --git a/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml b/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml new file mode 100644 index 00000000..86f06af2 --- /dev/null +++ b/networking/init-cms-bundle/4.0/serializer/Entity.Page.yaml @@ -0,0 +1,77 @@ +App\Entity\Page: + properties: + id: + type: integer + createdAt: + type: DateTime + updatedAt: + type: DateTime + pageName: + type: string + metaTitle: + type: string + url: + type: string + path: + type: string + level: + type: integer + metaKeyword: + type: string + metaDescription: + type: string + parent: + accessor: + getter: convertParentToInteger + type: integer + alias: + accessor: + getter: convertAliasToInteger + type: integer + parents: + accessor: + getter: convertParentsToArray + type: array + children: + accessor: + getter: convertChildrenToIntegerArray + type: array + allChildren: + exclude: true + layoutBlock: + type: ArrayCollection + menuItem: + exclude: true + accessor: + getter: prepareMenuItemsForSerialization + type: ArrayCollection + isHome: + type: boolean + status: + type: string + visibility: + type: string + activeFrom: + type: DateTime + activeTo: + type: DateTime + locale: + type: string + translations: + accessor: + getter: convertTranslationsToIntegerArray + type: array + originals: + accessor: + getter: convertOriginalsToIntegerArray + type: array + snapshots: + exclude: true + snapshotClassType: + type: string + oldTitle: + exclude: true + tags: + exclude: true + contentRoute: + exclude: true diff --git a/networking/init-cms-bundle/4.0/src/Entity/Page.php b/networking/init-cms-bundle/4.0/src/Entity/Page.php new file mode 100644 index 00000000..cb6786e3 --- /dev/null +++ b/networking/init-cms-bundle/4.0/src/Entity/Page.php @@ -0,0 +1,132 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + + +namespace App\Entity; + +use Doctrine\Common\Collections\ArrayCollection; +use Gedmo\Mapping\Annotation as Gedmo; +use Networking\InitCmsBundle\Entity\BasePage; +use Doctrine\ORM\Mapping as ORM; +use Networking\InitCmsBundle\Model\ContentRoute; + +/** + * + * @author Yorkie Chadwick + * + * @ORM\Entity + * @ORM\Table(name="page", + * uniqueConstraints={@ORM\UniqueConstraint(name="path_idx", columns={ + * "path", "locale" + * })} + * ) + * @ORM\HasLifecycleCallbacks() + */ +class Page extends BasePage{ + + /** + * @var integer $id + * + * @ORM\Column(type="integer") + * @ORM\Id + * @ORM\GeneratedValue(strategy="IDENTITY") + */ + protected $id; + + /** + * @var ContentRoute + * @ORM\OneToOne( + * targetEntity = "Networking\InitCmsBundle\Entity\ContentRoute", + * cascade={"remove", "persist"} + * ) + * @ORM\JoinColumn(name="content_route_id", referencedColumnName="id") + */ + protected $contentRoute; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\LayoutBlock", + * mappedBy="page", + * cascade={"remove", "persist"}, + * orphanRemoval=true + * ) + * @ORM\OrderBy({"sortOrder" = "ASC"}) + */ + protected $layoutBlock; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\MenuItem", + * mappedBy="page", + * cascade={"remove"}, + * orphanRemoval=true + * ) + */ + protected $menuItem; + + /** + * @ORM\OneToMany(targetEntity="Networking\InitCmsBundle\Entity\PageSnapshot", + * mappedBy="page", + * cascade={"remove"}, + * orphanRemoval=true + * ) + * @ORM\OrderBy({"version" = "DESC"}) + */ + protected $snapshots; + + /** + * @ORM\OneToMany(targetEntity="App\Entity\Page", + * mappedBy="parent" + * ) + */ + protected $children; + + /** + * @var Page + * @ORM\ManyToOne(targetEntity="App\Entity\Page" ) + * @ORM\JoinColumn(name="alias_id", referencedColumnName="id", onDelete="SET NULL") + */ + protected $alias; + + /** + * @var Page + * @ORM\ManyToOne(targetEntity="App\Entity\Page", inversedBy="children", cascade="persist" ) + * @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="SET NULL") + * @Gedmo\TreeParent + */ + protected $parent; + + /** + * @var ArrayCollection $originals + * @ORM\ManyToMany( + * targetEntity="App\Entity\Page", + * inversedBy="translations", + * cascade={"persist"} + * ) + * @ORM\JoinTable( + * name="page_translation", + * joinColumns={ + * @ORM\JoinColumn(name="translation_id", referencedColumnName="id") + * }, + * inverseJoinColumns={ + * @ORM\JoinColumn(name="original_id", referencedColumnName="id") + * } + * ) + */ + protected $originals; + + /** + * @var ArrayCollection $translations + * @ORM\ManyToMany( + * targetEntity="App\Entity\Page", + * mappedBy="originals", + * cascade={"persist"} + * ) + */ + protected $translations; +} diff --git a/networking/init-cms-bundle/4.0/src/Entity/User.php b/networking/init-cms-bundle/4.0/src/Entity/User.php new file mode 100644 index 00000000..81045b68 --- /dev/null +++ b/networking/init-cms-bundle/4.0/src/Entity/User.php @@ -0,0 +1,40 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + + +namespace App\Entity; + +use Networking\InitCmsBundle\Entity\BaseUser; +use Doctrine\ORM\Mapping as ORM; + +/** + * User + * + * @ORM\Table(name="fos_user_user") + * @ORM\Entity() + */ +class User extends BaseUser{ + + /** + * @var int + * + * @ORM\Column(name="id", type="integer") + * @ORM\Id + * @ORM\GeneratedValue(strategy="AUTO") + */ + protected $id; + + /** + * @var \Networking\InitCmsBundle\Model\AdminSettings + * @ORM\Column(name="admin_settings", type="object", nullable=true) + */ + protected $adminSettings; + +} From fbe13a35652dc69bfcd86a3e9ffc7711ea9743dc Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Tue, 5 Nov 2019 17:06:08 +0100 Subject: [PATCH 066/394] add mysql driver as default to env --- networking/init-cms-bundle/4.0/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/manifest.json b/networking/init-cms-bundle/4.0/manifest.json index b5b084e0..3d18fe02 100644 --- a/networking/init-cms-bundle/4.0/manifest.json +++ b/networking/init-cms-bundle/4.0/manifest.json @@ -8,7 +8,8 @@ "src/": "%SRC_DIR%/" }, "env": { - "LOCALE": "en" + "LOCALE": "en", + "DATABASE_DRIVER": "mysql" }, "composer-scripts": { "ckeditor:install --clear=drop": "symfony-cmd", From 8074a6042a17f72cda050fd06c2c3005093fb8fa Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Tue, 5 Nov 2019 17:37:31 +0100 Subject: [PATCH 067/394] update post install text --- networking/init-cms-bundle/4.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt index 96a5f7a1..618c3c05 100644 --- a/networking/init-cms-bundle/4.0/post-install.txt +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -10,7 +10,7 @@ bundle 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly 3. Clear the cache again so that the new config files are loaded correctly. - 4. Back up your database. + 4. Check your database configuration, and back up your database if you haven't done so already. 5. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands 6. Use the command networking:initcms:install to install setup the DB install fixtures and create a superuser admin 7. OR you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures From 720c21408e484eee2e94f173903d9194b40dda11 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Tue, 5 Nov 2019 18:00:58 +0100 Subject: [PATCH 068/394] clarify post install process --- .../init-cms-bundle/4.0/post-install.txt | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt index 618c3c05..e847862e 100644 --- a/networking/init-cms-bundle/4.0/post-install.txt +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -6,13 +6,12 @@ to ensure your app will work please do the following: 1. Check that all files imported via the networking_init_cms.yaml file are not overwritten with a similar configuration file in your /config/packages folder. !IMPORTANT the doctrine.yaml and security.yaml must be either - deleted, or configured along the lines of the provided default doctrine and security configs provided in the - bundle - 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly - 3. Clear the cache again so that the new config files are loaded correctly. - 4. Check your database configuration, and back up your database if you haven't done so already. - 5. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands - 6. Use the command networking:initcms:install to install setup the DB install fixtures and create a superuser admin - 7. OR you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures - 8. Enable or copy the security configuration file that is commented out in the networking_init_cms.yaml file - 9. Set up your managed languages for the lexik translation bundle + deleted, or update/extended with the configuration as proposed in the doctrine.yaml and security.yaml files + included with the CMS. + 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly. + 3. Configure your languages in the networking_init_cms.yaml file, for multi-language support. + 4. Clear the cache again so that the new config files are loaded correctly. + 5. Check your database configuration, and back up your database if you haven't done so already. + 6. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands + 7. Use the command networking:initcms:install to install the DB install fixtures and create a superuser admin. + ALTERNATIVELY you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures From ec4f3360b086415b86eaeda7732038510c63f7ea Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 6 Nov 2019 10:06:01 +0100 Subject: [PATCH 069/394] default use symlink for asset deployment --- networking/init-cms-bundle/4.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/manifest.json b/networking/init-cms-bundle/4.0/manifest.json index 3d18fe02..99902eb5 100644 --- a/networking/init-cms-bundle/4.0/manifest.json +++ b/networking/init-cms-bundle/4.0/manifest.json @@ -13,6 +13,6 @@ }, "composer-scripts": { "ckeditor:install --clear=drop": "symfony-cmd", - "assets:install %PUBLIC_DIR%": "symfony-cmd" + "assets:install --symlink %PUBLIC_DIR%": "symfony-cmd" } } From ddac8ed79bd0b0cca51d25621082cac264e0920a Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 6 Nov 2019 10:06:23 +0100 Subject: [PATCH 070/394] remove old package comments --- networking/init-cms-bundle/4.0/src/Entity/Page.php | 10 ---------- networking/init-cms-bundle/4.0/src/Entity/User.php | 9 --------- 2 files changed, 19 deletions(-) diff --git a/networking/init-cms-bundle/4.0/src/Entity/Page.php b/networking/init-cms-bundle/4.0/src/Entity/Page.php index cb6786e3..efa22bcf 100644 --- a/networking/init-cms-bundle/4.0/src/Entity/Page.php +++ b/networking/init-cms-bundle/4.0/src/Entity/Page.php @@ -1,14 +1,4 @@ - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - - namespace App\Entity; use Doctrine\Common\Collections\ArrayCollection; diff --git a/networking/init-cms-bundle/4.0/src/Entity/User.php b/networking/init-cms-bundle/4.0/src/Entity/User.php index 81045b68..ab1ff686 100644 --- a/networking/init-cms-bundle/4.0/src/Entity/User.php +++ b/networking/init-cms-bundle/4.0/src/Entity/User.php @@ -1,13 +1,4 @@ - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - namespace App\Entity; From 9dabf39efdbfeb0d917f3d0610e4593393efce8b Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 11:18:37 +0100 Subject: [PATCH 071/394] added config for page caching --- .../4.0/config/packages/dev/networking_init_cms.yaml | 3 +++ .../4.0/config/packages/networking_init_cms.yaml | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml diff --git a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml new file mode 100644 index 00000000..7e7445a9 --- /dev/null +++ b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml @@ -0,0 +1,3 @@ +networking_init_cms: + cache: + activate: false \ No newline at end of file diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 52963c15..135b0453 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -21,6 +21,9 @@ imports: # Set templating to twig. FOSUserBundle requires templating to be setup framework: templating: { engines: ['twig'] } + pools: + page.cache: + adapter: cache.app # Set up the serializer to read config file for App Page and User entities jms_serializer: From 2a9986859c393eb8384b2601e37f9569d1729755 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 11:21:10 +0100 Subject: [PATCH 072/394] added new line --- .../4.0/config/packages/dev/networking_init_cms.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml index 7e7445a9..6d6eae8b 100644 --- a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml @@ -1,3 +1,4 @@ networking_init_cms: cache: - activate: false \ No newline at end of file + activate: false + \ No newline at end of file From d765e0c8a8f73a1096209e644cf083797e64027c Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 11:22:13 +0100 Subject: [PATCH 073/394] remove tabs --- .../4.0/config/packages/dev/networking_init_cms.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml index 6d6eae8b..c83c82ca 100644 --- a/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/dev/networking_init_cms.yaml @@ -1,4 +1,3 @@ networking_init_cms: cache: activate: false - \ No newline at end of file From d46dd86b8719b2c68eaf2aaba890c73970ce6f29 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 11:25:27 +0100 Subject: [PATCH 074/394] fix framework cache configuration --- .../4.0/config/packages/networking_init_cms.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 135b0453..7bf30b2b 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -21,9 +21,10 @@ imports: # Set templating to twig. FOSUserBundle requires templating to be setup framework: templating: { engines: ['twig'] } - pools: - page.cache: - adapter: cache.app + cache: + pools: + page.cache: + adapter: cache.app # Set up the serializer to read config file for App Page and User entities jms_serializer: From 8606ac034734611ada67cbcc51ea9c678ec4f116 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 12:11:38 +0100 Subject: [PATCH 075/394] change default cache service class --- .../4.0/config/packages/networking_init_cms.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 7bf30b2b..0e5e3311 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -54,7 +54,7 @@ networking_init_cms: cache: activate: true #default false cache_time: 86400 #default value - cache_service_class: 'Networking\InitCmsBundle\Lib\PhpCache' #default value + cache_service: 'Networking\InitCmsBundle\Cache\PageCache' #default value # Show admin toolbar when in the frontend admin_toolbar: From fb985e38c9843a63cc4af24c6efe2558d56eecf2 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 12:28:19 +0100 Subject: [PATCH 076/394] added comments trigger rebuild in travis. Still installing old version of init-cms-bundle --- .../4.0/config/packages/networking_init_cms.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 0e5e3311..116b49ac 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -24,7 +24,7 @@ framework: cache: pools: page.cache: - adapter: cache.app + adapter: cache.app #Setup page cache using template from cache.app # Set up the serializer to read config file for App Page and User entities jms_serializer: From e94659ead5db82d06b82d1286a6d70f99955f9d2 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 12:32:20 +0100 Subject: [PATCH 077/394] added info about new cache system --- networking/init-cms-bundle/4.0/post-install.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt index e847862e..c1367702 100644 --- a/networking/init-cms-bundle/4.0/post-install.txt +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -15,3 +15,4 @@ 6. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands 7. Use the command networking:initcms:install to install the DB install fixtures and create a superuser admin. ALTERNATIVELY you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures + 8. Enable or disable full page caching by setting networking_init_cms.cache.activate to true/false From 415d0885d4d9e70355e337e160e956af4c60c398 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Wed, 13 Nov 2019 14:08:06 +0100 Subject: [PATCH 078/394] remove assets:install command. Inserted by framework bundle --- networking/init-cms-bundle/4.0/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/networking/init-cms-bundle/4.0/manifest.json b/networking/init-cms-bundle/4.0/manifest.json index 99902eb5..f54d3d45 100644 --- a/networking/init-cms-bundle/4.0/manifest.json +++ b/networking/init-cms-bundle/4.0/manifest.json @@ -12,7 +12,6 @@ "DATABASE_DRIVER": "mysql" }, "composer-scripts": { - "ckeditor:install --clear=drop": "symfony-cmd", - "assets:install --symlink %PUBLIC_DIR%": "symfony-cmd" + "ckeditor:install --clear=drop": "symfony-cmd" } } From 5d76de978c85f2ae74c6f27e672c0449de169bbe Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Wed, 13 Nov 2019 13:21:24 +0000 Subject: [PATCH 079/394] * [coka/file-bundle] Fixed bug: container parameter not resolved. --- coka/file-bundle/3.0/config/packages/oka_file.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coka/file-bundle/3.0/config/packages/oka_file.yaml b/coka/file-bundle/3.0/config/packages/oka_file.yaml index 589525ed..8f4da55d 100644 --- a/coka/file-bundle/3.0/config/packages/oka_file.yaml +++ b/coka/file-bundle/3.0/config/packages/oka_file.yaml @@ -1,6 +1,6 @@ oka_file: db_driver: orm storage: - root_path: '%env(OKAFILE_STORAGE_ROOT_PATH)%' + root_path: '%env(resolve:OKAFILE_STORAGE_ROOT_PATH)%' webserver: - host: '%env(OKAFILE_STORAGE_WEB_SERVER_HOST)%' + host: '%env(resolve:OKAFILE_STORAGE_WEB_SERVER_HOST)%' From aaaa855bbf8f541e32b959b427bdbd797cdc7872 Mon Sep 17 00:00:00 2001 From: imper Date: Thu, 14 Nov 2019 17:33:06 +0100 Subject: [PATCH 080/394] imper86/jobby-cron-bundle recipe --- .../1.0/config/packages/imper86_jobby.yaml | 2 ++ imper86/jobby-cron-bundle/1.0/manifest.json | 8 ++++++++ imper86/jobby-cron-bundle/1.0/post-install.txt | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml create mode 100644 imper86/jobby-cron-bundle/1.0/manifest.json create mode 100644 imper86/jobby-cron-bundle/1.0/post-install.txt diff --git a/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml b/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml new file mode 100644 index 00000000..9af56d60 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/config/packages/imper86_jobby.yaml @@ -0,0 +1,2 @@ +imper86_jobby: + jobs: [] diff --git a/imper86/jobby-cron-bundle/1.0/manifest.json b/imper86/jobby-cron-bundle/1.0/manifest.json new file mode 100644 index 00000000..b2972970 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Imper86\\JobbyBundle\\Imper86JobbyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/imper86/jobby-cron-bundle/1.0/post-install.txt b/imper86/jobby-cron-bundle/1.0/post-install.txt new file mode 100644 index 00000000..e0b168a8 --- /dev/null +++ b/imper86/jobby-cron-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Jobby cron bundle - next steps + + + * Configure jobs in imper86_jobby.yaml in your config/packages directory + * Check config details with command ./bin/console config:dump imper86_jobby From bcf8cf2f94d1dc04142e6d451b70db89d739ec9e Mon Sep 17 00:00:00 2001 From: "Nek (Maxime Veber)" Date: Wed, 2 Oct 2019 00:38:51 +0200 Subject: [PATCH 081/394] Add biig/domain recipe It is useful because by default some features are not enabled and it's not always obvious they are not. --- biig/domain/1.0/config/packages/biig_domain.yaml | 9 +++++++++ biig/domain/1.0/manifest.json | 8 ++++++++ biig/domain/2.0/config/packages/biig_domain.yaml | 9 +++++++++ biig/domain/2.0/manifest.json | 8 ++++++++ 4 files changed, 34 insertions(+) create mode 100644 biig/domain/1.0/config/packages/biig_domain.yaml create mode 100644 biig/domain/1.0/manifest.json create mode 100644 biig/domain/2.0/config/packages/biig_domain.yaml create mode 100644 biig/domain/2.0/manifest.json diff --git a/biig/domain/1.0/config/packages/biig_domain.yaml b/biig/domain/1.0/config/packages/biig_domain.yaml new file mode 100644 index 00000000..e723c16b --- /dev/null +++ b/biig/domain/1.0/config/packages/biig_domain.yaml @@ -0,0 +1,9 @@ +biig_domain: + # Learn more about configuration in the bundle configuration reference + # https://github.com/biig-io/DomainComponent/blob/v1/docs/domain_event_dispatcher.md#configuration-reference + + # Post persist events are *not* activated by default, you need to enable the post persist listeners + persist_listeners: + # As doctrine supports many connections, you need to enable your connections one by one + doctrine: ['default'] + diff --git a/biig/domain/1.0/manifest.json b/biig/domain/1.0/manifest.json new file mode 100644 index 00000000..48c4d407 --- /dev/null +++ b/biig/domain/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Biig\\Component\\Domain\\Integration\\Symfony\\DomainBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/biig/domain/2.0/config/packages/biig_domain.yaml b/biig/domain/2.0/config/packages/biig_domain.yaml new file mode 100644 index 00000000..7d142d85 --- /dev/null +++ b/biig/domain/2.0/config/packages/biig_domain.yaml @@ -0,0 +1,9 @@ +biig_domain: + # Learn more about configuration in the bundle configuration reference + # https://github.com/biig-io/DomainComponent/blob/master/docs/domain_event_dispatcher.md#configuration-reference + + # Post persist events are *not* activated by default, you need to enable the post persist listeners + persist_listeners: + # As doctrine supports many connections, you need to enable your connections one by one + doctrine: ['default'] + diff --git a/biig/domain/2.0/manifest.json b/biig/domain/2.0/manifest.json new file mode 100644 index 00000000..48c4d407 --- /dev/null +++ b/biig/domain/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Biig\\Component\\Domain\\Integration\\Symfony\\DomainBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 311b9ea561dffdb5f09ce647a6c739ff7b8db437 Mon Sep 17 00:00:00 2001 From: "Nek (Maxime Veber)" Date: Sun, 17 Nov 2019 14:22:38 +0100 Subject: [PATCH 082/394] Removing v2 recipe as it's exacly the same as v1 Related to https://github.com/symfony/recipes-contrib/pull/763#issuecomment-554620024 --- biig/domain/2.0/config/packages/biig_domain.yaml | 9 --------- biig/domain/2.0/manifest.json | 8 -------- 2 files changed, 17 deletions(-) delete mode 100644 biig/domain/2.0/config/packages/biig_domain.yaml delete mode 100644 biig/domain/2.0/manifest.json diff --git a/biig/domain/2.0/config/packages/biig_domain.yaml b/biig/domain/2.0/config/packages/biig_domain.yaml deleted file mode 100644 index 7d142d85..00000000 --- a/biig/domain/2.0/config/packages/biig_domain.yaml +++ /dev/null @@ -1,9 +0,0 @@ -biig_domain: - # Learn more about configuration in the bundle configuration reference - # https://github.com/biig-io/DomainComponent/blob/master/docs/domain_event_dispatcher.md#configuration-reference - - # Post persist events are *not* activated by default, you need to enable the post persist listeners - persist_listeners: - # As doctrine supports many connections, you need to enable your connections one by one - doctrine: ['default'] - diff --git a/biig/domain/2.0/manifest.json b/biig/domain/2.0/manifest.json deleted file mode 100644 index 48c4d407..00000000 --- a/biig/domain/2.0/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "Biig\\Component\\Domain\\Integration\\Symfony\\DomainBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} From 7e5703e380f0da60aa24c46adcf26a0b28407bfe Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Mon, 18 Nov 2019 10:41:42 +0100 Subject: [PATCH 083/394] avoid dangerous example config in recipe preserving headers on redirects includes a potential security risk because on redirect to a different domain credential headers would be leaked. --- php-http/httplug-bundle/1.6/config/packages/httplug.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-http/httplug-bundle/1.6/config/packages/httplug.yaml b/php-http/httplug-bundle/1.6/config/packages/httplug.yaml index 2aadcd13..71100ff4 100644 --- a/php-http/httplug-bundle/1.6/config/packages/httplug.yaml +++ b/php-http/httplug-bundle/1.6/config/packages/httplug.yaml @@ -1,7 +1,7 @@ httplug: plugins: - redirect: - preserve_header: true + retry: + retry: 1 discovery: client: 'auto' From 5f2847f335f2c232af982d91fe96ba731c80079d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 15:38:32 +0100 Subject: [PATCH 084/394] add gheb/docusign-bundle v5.0 --- .../4.5/config/packages/docusign.yaml | 17 --------- .../4.5/config/routes/docusign.yaml | 2 - gheb/docusign-bundle/4.5/manifest.json | 8 ---- .../5.0/config/packages/docusign.yaml | 38 +++++++++++++++++++ gheb/docusign-bundle/5.0/manifest.json | 17 +++++++++ gheb/docusign-bundle/5.0/post-install.txt | 9 +++++ 6 files changed, 64 insertions(+), 27 deletions(-) delete mode 100644 gheb/docusign-bundle/4.5/config/packages/docusign.yaml delete mode 100644 gheb/docusign-bundle/4.5/config/routes/docusign.yaml delete mode 100644 gheb/docusign-bundle/4.5/manifest.json create mode 100644 gheb/docusign-bundle/5.0/config/packages/docusign.yaml create mode 100644 gheb/docusign-bundle/5.0/manifest.json create mode 100644 gheb/docusign-bundle/5.0/post-install.txt diff --git a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml b/gheb/docusign-bundle/4.5/config/packages/docusign.yaml deleted file mode 100644 index df6eb0cd..00000000 --- a/gheb/docusign-bundle/4.5/config/packages/docusign.yaml +++ /dev/null @@ -1,17 +0,0 @@ -docusign: - access_token: "YourAccessToken" - account_id: "yourAccountId" - default_signer_name: "Your Signer Name" - default_signer_email: "you@email.tld" - signatures: - default_document_type: - signatures: - - - page: 1 # default - x_position: 200 # top left corner in pixels - y_position: 400 # top left corner in pixels - storages: - docusign.storage: - adapter: 'local' - options: - directory: '%kernel.project_dir%/var/storage/default' diff --git a/gheb/docusign-bundle/4.5/config/routes/docusign.yaml b/gheb/docusign-bundle/4.5/config/routes/docusign.yaml deleted file mode 100644 index 8de7cec6..00000000 --- a/gheb/docusign-bundle/4.5/config/routes/docusign.yaml +++ /dev/null @@ -1,2 +0,0 @@ -docusign: - resource: '@DocusignBundle/Resources/config/routing.xml' diff --git a/gheb/docusign-bundle/4.5/manifest.json b/gheb/docusign-bundle/4.5/manifest.json deleted file mode 100644 index bdd9924e..00000000 --- a/gheb/docusign-bundle/4.5/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "\\DocusignBundle\\DocusignBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml new file mode 100644 index 00000000..2f380534 --- /dev/null +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -0,0 +1,38 @@ +docusign: + demo: "%kernel.debug%" + mode: embedded # Mode used to sign (remote or embedded) + + # Authentication credentials to log into docusign. + auth_jwt: + private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" + integration_id: "%env(DOCUSIGN_INTEGRATION_ID)%" + user_guid: "%env(DOCUSIGN_USER_GUID)%" + + # Your DocuSign account id + account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" + + default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. + default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. + + api_uri: "https://www.docusign.net/restapi" # DocuSign api uri. When demo is true, the bundle replace it by `https://demo.docusign.net/restapi` + + callback: "docusign_callback" # Your route where to redirect the user after signature + + # To sign you need to generate a route to call. + # The route name will be formated `docusign.sign.{signaturename}` for this one it will be `docusign.sign.my_embedded_signature` and will have `my_embedded_signature` as attribute type + # By defining this, you have a full control over the security applied to this route. see https://symfony.com/doc/current/security/access_control.html + sign_path: '/my/embedded/sign/path' + + # Where to position the signature + signatures: + # this is an array of positions, you can have multiple signatures locations per pages + - + page: 1 # Default + x_position: 200 # Top left corner in pixels + y_position: 400 # Top left corner in pixels + + # Defines where are stored the documents + storage: + adapter: 'local' + options: + directory: '%kernel.project_dir%/var/storage/default' diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json new file mode 100644 index 00000000..7a2eef4d --- /dev/null +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -0,0 +1,17 @@ +{ + "bundles": { + "\\DocusignBundle\\DocusignBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", + "DOCUSIGN_INTEGRATION_ID": "UUID-DOCUSIGN-INTEGRATION-KEY", + "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", + "DOCUSIGN_ACCOUNT_ID": 1234567 + }, + "gitignore": [ + "/%CONFIG_DIR%/jwt/*.pem" + ] +} diff --git a/gheb/docusign-bundle/5.0/post-install.txt b/gheb/docusign-bundle/5.0/post-install.txt new file mode 100644 index 00000000..2fbf1cab --- /dev/null +++ b/gheb/docusign-bundle/5.0/post-install.txt @@ -0,0 +1,9 @@ + + You just installed Docusign Bundle! + What's next? + + + * Read the documentation at: + https://github.com/GregoireHebert/docusign-bundle + * Edit the .env file to adapt the authentication settings. + * Edit the config/packages/docusign.yaml file to configure your documents signatures. From c6bb99c439eb3ed3527b73deaff835d245eaa708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 15:41:44 +0100 Subject: [PATCH 085/394] fix string value --- gheb/docusign-bundle/5.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json index 7a2eef4d..fa69a588 100644 --- a/gheb/docusign-bundle/5.0/manifest.json +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -9,7 +9,7 @@ "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", "DOCUSIGN_INTEGRATION_ID": "UUID-DOCUSIGN-INTEGRATION-KEY", "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", - "DOCUSIGN_ACCOUNT_ID": 1234567 + "DOCUSIGN_ACCOUNT_ID": "1234567" }, "gitignore": [ "/%CONFIG_DIR%/jwt/*.pem" From 6dada89998ee5403a8b1f06736a21ef53c0553d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 15:44:45 +0100 Subject: [PATCH 086/394] enforce int for environment variable --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index 2f380534..f532cf57 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -9,7 +9,7 @@ docusign: user_guid: "%env(DOCUSIGN_USER_GUID)%" # Your DocuSign account id - account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" + account_id: "%env(int:DOCUSIGN_ACCOUNT_ID)%" default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. From d0d1f3bcc266f018019290c91c6179ecb526919f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 15:51:37 +0100 Subject: [PATCH 087/394] fix connfiguration key --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 2 +- gheb/docusign-bundle/5.0/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index f532cf57..10ab314e 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -5,7 +5,7 @@ docusign: # Authentication credentials to log into docusign. auth_jwt: private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" - integration_id: "%env(DOCUSIGN_INTEGRATION_ID)%" + integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" user_guid: "%env(DOCUSIGN_USER_GUID)%" # Your DocuSign account id diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json index fa69a588..da2f3c53 100644 --- a/gheb/docusign-bundle/5.0/manifest.json +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -7,7 +7,7 @@ }, "env": { "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", - "DOCUSIGN_INTEGRATION_ID": "UUID-DOCUSIGN-INTEGRATION-KEY", + "DOCUSIGN_INTEGRATION_KEY": "UUID-DOCUSIGN-INTEGRATION-KEY", "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", "DOCUSIGN_ACCOUNT_ID": "1234567" }, From 177b1c2d6fe04abf0e9f1aa3e680aea2470860ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 16:03:45 +0100 Subject: [PATCH 088/394] remove int: --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index 10ab314e..4d8704a9 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -9,7 +9,7 @@ docusign: user_guid: "%env(DOCUSIGN_USER_GUID)%" # Your DocuSign account id - account_id: "%env(int:DOCUSIGN_ACCOUNT_ID)%" + account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. From 439058888d2dc082dddf06e15cee2a2fce9f4215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 18:08:28 +0100 Subject: [PATCH 089/394] remove envvar since it cannot be evaluated before configuration validation --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 8 ++++---- gheb/docusign-bundle/5.0/manifest.json | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index 4d8704a9..a9d75ef6 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -4,12 +4,12 @@ docusign: # Authentication credentials to log into docusign. auth_jwt: - private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" - integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" - user_guid: "%env(DOCUSIGN_USER_GUID)%" + private_key: "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem" + integration_key: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours + user_guid: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours # Your DocuSign account id - account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" + account_id: 1234567 default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json index da2f3c53..ae709204 100644 --- a/gheb/docusign-bundle/5.0/manifest.json +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -6,9 +6,9 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", - "DOCUSIGN_INTEGRATION_KEY": "UUID-DOCUSIGN-INTEGRATION-KEY", - "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", + "DOCUSIGN_PRIVATE_KEY_PATH": "", + "DOCUSIGN_INTEGRATION_KEY": "", + "DOCUSIGN_USER_GUID": "", "DOCUSIGN_ACCOUNT_ID": "1234567" }, "gitignore": [ From 671d9e61f99ea20d814478f6793bd05a01868bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Mon, 18 Nov 2019 18:09:11 +0100 Subject: [PATCH 090/394] remove envvar since it cannot be evaluated before configuration validation --- gheb/docusign-bundle/5.0/manifest.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json index ae709204..fc90c6a2 100644 --- a/gheb/docusign-bundle/5.0/manifest.json +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -5,12 +5,6 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" }, - "env": { - "DOCUSIGN_PRIVATE_KEY_PATH": "", - "DOCUSIGN_INTEGRATION_KEY": "", - "DOCUSIGN_USER_GUID": "", - "DOCUSIGN_ACCOUNT_ID": "1234567" - }, "gitignore": [ "/%CONFIG_DIR%/jwt/*.pem" ] From 797de60c3170de52944902b93713c0178161a4ea Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 12 Sep 2019 21:56:46 +0200 Subject: [PATCH 091/394] Add ECL Twig Bundle recipe. --- drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml | 2 ++ drupol/ecl-twig-bundle/1.0/manifest.json | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml create mode 100644 drupol/ecl-twig-bundle/1.0/manifest.json diff --git a/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml b/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml new file mode 100644 index 00000000..19be21ac --- /dev/null +++ b/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml @@ -0,0 +1,2 @@ +ecl_twig: + default_preset: ec \ No newline at end of file diff --git a/drupol/ecl-twig-bundle/1.0/manifest.json b/drupol/ecl-twig-bundle/1.0/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/drupol/ecl-twig-bundle/1.0/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4a51637e7d9d90e2d7a3933c3da0d76655129e82 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 12 Sep 2019 21:58:16 +0200 Subject: [PATCH 092/394] Fix QA review. --- drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml b/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml index 19be21ac..b28b6a56 100644 --- a/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml +++ b/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml @@ -1,2 +1,2 @@ ecl_twig: - default_preset: ec \ No newline at end of file + default_preset: ec From 49a6ed4f5a6934cc7cd5da8cc3d196baccf24322 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 12 Sep 2019 21:59:05 +0200 Subject: [PATCH 093/394] Change version. --- drupol/ecl-twig-bundle/{1.0 => 0.1}/config/packages/ecl_twig.yaml | 0 drupol/ecl-twig-bundle/{1.0 => 0.1}/manifest.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename drupol/ecl-twig-bundle/{1.0 => 0.1}/config/packages/ecl_twig.yaml (100%) rename drupol/ecl-twig-bundle/{1.0 => 0.1}/manifest.json (100%) diff --git a/drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml b/drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml similarity index 100% rename from drupol/ecl-twig-bundle/1.0/config/packages/ecl_twig.yaml rename to drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml diff --git a/drupol/ecl-twig-bundle/1.0/manifest.json b/drupol/ecl-twig-bundle/0.1/manifest.json similarity index 100% rename from drupol/ecl-twig-bundle/1.0/manifest.json rename to drupol/ecl-twig-bundle/0.1/manifest.json From 19ed59cf5b9d891db2697c3c25b5b3bce28d698c Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 12 Sep 2019 22:03:05 +0200 Subject: [PATCH 094/394] Register package bundle. --- drupol/ecl-twig-bundle/0.1/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drupol/ecl-twig-bundle/0.1/manifest.json b/drupol/ecl-twig-bundle/0.1/manifest.json index e164c6e6..95fa6671 100644 --- a/drupol/ecl-twig-bundle/0.1/manifest.json +++ b/drupol/ecl-twig-bundle/0.1/manifest.json @@ -1,4 +1,7 @@ { + "bundles": { + "drupol\\EclTwigBundle": ["all"] + }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } From 5d3187cad0dbda139e387de8f730402e0dcc3eee Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 13 Sep 2019 11:05:20 +0200 Subject: [PATCH 095/394] Use copy-from-package instead. --- drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml | 2 -- drupol/ecl-twig-bundle/0.1/manifest.json | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml diff --git a/drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml b/drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml deleted file mode 100644 index b28b6a56..00000000 --- a/drupol/ecl-twig-bundle/0.1/config/packages/ecl_twig.yaml +++ /dev/null @@ -1,2 +0,0 @@ -ecl_twig: - default_preset: ec diff --git a/drupol/ecl-twig-bundle/0.1/manifest.json b/drupol/ecl-twig-bundle/0.1/manifest.json index 95fa6671..7fe63b72 100644 --- a/drupol/ecl-twig-bundle/0.1/manifest.json +++ b/drupol/ecl-twig-bundle/0.1/manifest.json @@ -1,8 +1,8 @@ { "bundles": { - "drupol\\EclTwigBundle": ["all"] + "drupol\\EclTwigBundle\\EclTwigBundle": ["all"] }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" + "copy-from-package": { + ".recipe/config/": "%CONFIG_DIR%/" } } From a7df129ad6cfbb71dc3150ed5c3ef5923fb47d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Mon, 25 Nov 2019 12:28:55 +0100 Subject: [PATCH 096/394] Add PaylineBundle --- .../payline-bundle/2.0/config/payline.yaml | 18 ++++++++++++++++++ lolautruche/payline-bundle/2.0/manifest.json | 14 ++++++++++++++ .../payline-bundle/2.0/post-install.txt | 16 ++++++++++++++++ 3 files changed, 48 insertions(+) create mode 100644 lolautruche/payline-bundle/2.0/config/payline.yaml create mode 100644 lolautruche/payline-bundle/2.0/manifest.json create mode 100644 lolautruche/payline-bundle/2.0/post-install.txt diff --git a/lolautruche/payline-bundle/2.0/config/payline.yaml b/lolautruche/payline-bundle/2.0/config/payline.yaml new file mode 100644 index 00000000..31ec2ca5 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/config/payline.yaml @@ -0,0 +1,18 @@ +lolautruche_payline: + # Credentials given by Payline. + # Set them as environment variable. + merchant_id: '%env(PAYLINE_MERCHANT_ID)%' + access_key: '%env(PAYLINE_ACCESS_KEY)%' + contract_number: '%env(PAYLINE_CONTRACT_NUMBER)%' + # Payline environment + # e.g. 'homo' for 'Homologation', 'prod' for 'Production', 'int' for 'Integration' + # Valid values are 'homo', 'prod', 'int' and 'dev'. + # Best practice is to define it with PAYLINE_ENVIRONMENT env var. + environment: '%env(PAYLINE_ENVIRONMENT)%' + # Default curreny, as supported by Payline. + # Can be EUR (or €), USD (or $), POUND (or £). + default_currency: '€' + # Route name for the confirmation page the user will be redirected to, once the payment has been processed. + default_confirmation_route: 'route_name_for_confirmation_page' + # Route name for the error page the user will be redirected to if there was an error with the payment. + default_error_route: 'route_name_for_error_page' diff --git a/lolautruche/payline-bundle/2.0/manifest.json b/lolautruche/payline-bundle/2.0/manifest.json new file mode 100644 index 00000000..4dfca9ef --- /dev/null +++ b/lolautruche/payline-bundle/2.0/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "Lolautruche\\PaylineBundle\\LolautruchePaylineBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "PAYLINE_MERCHANT_ID": "your_payline_merchant_id", + "PAYLINE_ACCESS_KEY": "your_payline_access_key", + "PAYLINE_CONTRACT_NUMBER": "your_payline_contract_number", + "PAYLINE_ENVIRONMENT": "homo" + } +} diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt new file mode 100644 index 00000000..b8a6cbd7 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -0,0 +1,16 @@ + + You just installed lolautruche/playline-bundle! + What's next? + + + * Use the default storage immediately: + + public function __construct(FilesystemInterface $defaultStorage) + { + ... + } + + * Configure Payline environment variables and settings in config/packages/payline.yaml. + + * Read the documentation at: + https://github.com/lolautruche/LolautruchePaylineBundle/blob/master/Resources/doc/00-index.md From 54ed180df535e94c6b8b1de5ed1934cd4c441dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Mon, 25 Nov 2019 14:52:16 +0100 Subject: [PATCH 097/394] Add routes --- lolautruche/payline-bundle/2.0/config/routes/payline.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lolautruche/payline-bundle/2.0/config/routes/payline.yaml diff --git a/lolautruche/payline-bundle/2.0/config/routes/payline.yaml b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml new file mode 100644 index 00000000..e7864c41 --- /dev/null +++ b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml @@ -0,0 +1,3 @@ +LolautruchePaylineBundle: + resource: "@LolautruchePaylineBundle/Resources/config/routing.yml" + prefix: / From 75dbadf42b436c6b98d173489c67c6a252036656 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Mon, 25 Nov 2019 14:57:46 +0100 Subject: [PATCH 098/394] Move payline.yaml to config/packages --- lolautruche/payline-bundle/2.0/config/{ => packages}/payline.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename lolautruche/payline-bundle/2.0/config/{ => packages}/payline.yaml (100%) diff --git a/lolautruche/payline-bundle/2.0/config/payline.yaml b/lolautruche/payline-bundle/2.0/config/packages/payline.yaml similarity index 100% rename from lolautruche/payline-bundle/2.0/config/payline.yaml rename to lolautruche/payline-bundle/2.0/config/packages/payline.yaml From b748c3521b4de68e952cda8aead8566280b91ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Mon, 25 Nov 2019 15:00:05 +0100 Subject: [PATCH 099/394] Fix post-install.txt --- lolautruche/payline-bundle/2.0/post-install.txt | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt index b8a6cbd7..1f6e20f8 100644 --- a/lolautruche/payline-bundle/2.0/post-install.txt +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -1,15 +1,8 @@ - You just installed lolautruche/playline-bundle! + You just installed LolautruchePaylineBundle! What's next? - * Use the default storage immediately: - - public function __construct(FilesystemInterface $defaultStorage) - { - ... - } - * Configure Payline environment variables and settings in config/packages/payline.yaml. * Read the documentation at: From ac12d06ff6b303b5ede700c0590b1c7b162b003c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Mon, 25 Nov 2019 17:20:57 +0100 Subject: [PATCH 100/394] Fix review remarks --- .../payline-bundle/2.0/config/packages/payline.yaml | 7 ------- lolautruche/payline-bundle/2.0/config/routes/payline.yaml | 4 ++-- lolautruche/payline-bundle/2.0/manifest.json | 2 ++ lolautruche/payline-bundle/2.0/post-install.txt | 2 +- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/lolautruche/payline-bundle/2.0/config/packages/payline.yaml b/lolautruche/payline-bundle/2.0/config/packages/payline.yaml index 31ec2ca5..c3e274bb 100644 --- a/lolautruche/payline-bundle/2.0/config/packages/payline.yaml +++ b/lolautruche/payline-bundle/2.0/config/packages/payline.yaml @@ -1,15 +1,8 @@ lolautruche_payline: - # Credentials given by Payline. - # Set them as environment variable. merchant_id: '%env(PAYLINE_MERCHANT_ID)%' access_key: '%env(PAYLINE_ACCESS_KEY)%' contract_number: '%env(PAYLINE_CONTRACT_NUMBER)%' - # Payline environment - # e.g. 'homo' for 'Homologation', 'prod' for 'Production', 'int' for 'Integration' - # Valid values are 'homo', 'prod', 'int' and 'dev'. - # Best practice is to define it with PAYLINE_ENVIRONMENT env var. environment: '%env(PAYLINE_ENVIRONMENT)%' - # Default curreny, as supported by Payline. # Can be EUR (or €), USD (or $), POUND (or £). default_currency: '€' # Route name for the confirmation page the user will be redirected to, once the payment has been processed. diff --git a/lolautruche/payline-bundle/2.0/config/routes/payline.yaml b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml index e7864c41..920c2843 100644 --- a/lolautruche/payline-bundle/2.0/config/routes/payline.yaml +++ b/lolautruche/payline-bundle/2.0/config/routes/payline.yaml @@ -1,3 +1,3 @@ LolautruchePaylineBundle: - resource: "@LolautruchePaylineBundle/Resources/config/routing.yml" - prefix: / + resource: '@LolautruchePaylineBundle/Resources/config/routing.yml' + prefix: / diff --git a/lolautruche/payline-bundle/2.0/manifest.json b/lolautruche/payline-bundle/2.0/manifest.json index 4dfca9ef..b88d40d4 100644 --- a/lolautruche/payline-bundle/2.0/manifest.json +++ b/lolautruche/payline-bundle/2.0/manifest.json @@ -9,6 +9,8 @@ "PAYLINE_MERCHANT_ID": "your_payline_merchant_id", "PAYLINE_ACCESS_KEY": "your_payline_access_key", "PAYLINE_CONTRACT_NUMBER": "your_payline_contract_number", + "#1": "Valid values are 'homo', 'prod', 'int' and 'dev'.", + "#2": "e.g. 'homo' for 'Homologation', 'prod' for 'Production', 'int' for 'Integration'", "PAYLINE_ENVIRONMENT": "homo" } } diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt index 1f6e20f8..21499e15 100644 --- a/lolautruche/payline-bundle/2.0/post-install.txt +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -3,7 +3,7 @@ What's next? - * Configure Payline environment variables and settings in config/packages/payline.yaml. + * Configure Payline environment variables in .env. * Read the documentation at: https://github.com/lolautruche/LolautruchePaylineBundle/blob/master/Resources/doc/00-index.md From fd065a57059ae56e1a551be93664371e92aace5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Tue, 26 Nov 2019 10:50:42 +0100 Subject: [PATCH 101/394] Added a post-install note about encrypted settings --- lolautruche/payline-bundle/2.0/post-install.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt index 21499e15..6c4f3174 100644 --- a/lolautruche/payline-bundle/2.0/post-install.txt +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -3,7 +3,9 @@ What's next? - * Configure Payline environment variables in .env. + * Configure Payline environment variables in .env; + + * Encrypt sensitive environment variables with bin/console secrets:set command (optional); * Read the documentation at: https://github.com/lolautruche/LolautruchePaylineBundle/blob/master/Resources/doc/00-index.md From 4e254a59c9eabc58f839aad218bdd3aa6b5d2c5b Mon Sep 17 00:00:00 2001 From: Maxime Veber Date: Wed, 27 Nov 2019 10:51:12 +0100 Subject: [PATCH 102/394] Add fork of phone bundle recipe After lack of maintainance of the main bundle, we decided to fork the bundle, this recipe will help new users. --- .../3.0/config/packages/misd_phone_number.yaml | 6 ++++++ odolbeau/phone-number-bundle/3.0/manifest.json | 8 ++++++++ odolbeau/phone-number-bundle/3.0/post-install.txt | 9 +++++++++ 3 files changed, 23 insertions(+) create mode 100644 odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml create mode 100644 odolbeau/phone-number-bundle/3.0/manifest.json create mode 100644 odolbeau/phone-number-bundle/3.0/post-install.txt diff --git a/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml b/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml new file mode 100644 index 00000000..a9970e10 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/config/packages/misd_phone_number.yaml @@ -0,0 +1,6 @@ +# To persist libphonenumber\PhoneNumber objects, add the Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType mapping to your application's config. +# This requires: doctrine/doctrine-bundle +#doctrine: +# dbal: +# types: +# phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType diff --git a/odolbeau/phone-number-bundle/3.0/manifest.json b/odolbeau/phone-number-bundle/3.0/manifest.json new file mode 100644 index 00000000..333a9a25 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Misd\\PhoneNumberBundle\\MisdPhoneNumberBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/odolbeau/phone-number-bundle/3.0/post-install.txt b/odolbeau/phone-number-bundle/3.0/post-install.txt new file mode 100644 index 00000000..a71c1801 --- /dev/null +++ b/odolbeau/phone-number-bundle/3.0/post-install.txt @@ -0,0 +1,9 @@ + + Uncomment the configuration provided for doctrine + and now can use the phone bundle as described here: + https://github.com/odolbeau/phone-number-bundle#usage + The Doctrine configuration has been already done. + You now can use `phone_number` as an ORM-Type: + + /** @ORM\Column(type="phone_number") */ + private $phoneNumber; From b5c4a35681b06e1e41728efa649d57b25e50f61b Mon Sep 17 00:00:00 2001 From: Roy-Orbison Date: Thu, 28 Nov 2019 21:03:25 +1030 Subject: [PATCH 103/394] Simplify Apache rewriting directives Use simpler regex patterns, existing backreferences, and faster lexicographic test where possible. --- symfony/apache-pack/1.0/public/.htaccess | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/symfony/apache-pack/1.0/public/.htaccess b/symfony/apache-pack/1.0/public/.htaccess index bcce7fcc..0379bfca 100644 --- a/symfony/apache-pack/1.0/public/.htaccess +++ b/symfony/apache-pack/1.0/public/.htaccess @@ -27,12 +27,12 @@ DirectoryIndex index.php # work in environments without path prefix as well, providing a safe, one-size # fits all solution. But as you do not need it in this case, you can comment # the following 2 lines to eliminate the overhead. - RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ - RewriteRule ^(.*) - [E=BASE:%1] + RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$ + RewriteRule .* - [E=BASE:%1] # Sets the HTTP_AUTHORIZATION header removed by Apache - RewriteCond %{HTTP:Authorization} . - RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + RewriteCond %{HTTP:Authorization} .+ + RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0] # Redirect to URI without front controller to prevent duplicate content # (with and without `/index.php`). Only do this redirect on the initial @@ -45,15 +45,13 @@ DirectoryIndex index.php # - disable this feature by commenting the following 2 lines or # - use Apache >= 2.3.9 and replace all L flags by END flags and remove the # following RewriteCond (best solution) - RewriteCond %{ENV:REDIRECT_STATUS} ^$ + RewriteCond %{ENV:REDIRECT_STATUS} ="" RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L] # If the requested filename exists, simply serve it. # We only want to let Apache serve files and not directories. - RewriteCond %{REQUEST_FILENAME} -f - RewriteRule ^ - [L] - # Rewrite all other queries to the front controller. + RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ %{ENV:BASE}/index.php [L] From 35d743edef9c83a2e2a812e9f761c5fb509dc89b Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 28 Nov 2019 17:00:20 +0100 Subject: [PATCH 104/394] Adding tests on Symfony5 --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e08751a5..deae7cc2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,9 @@ matrix: - php: 7.4snapshot env: SKELETON_VERSION="^3.4" - php: 7.4snapshot - env: SKELETON_VERSION="^4.0" + env: SKELETON_VERSION="^4.4" + - php: 7.4snapshot + env: SKELETON_VERSION="^5.0" before_install: - phpenv config-rm xdebug.ini || true From 0c784271a7ab36b9662146d2154329c816b7d534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Vieilledent?= Date: Thu, 28 Nov 2019 17:51:47 +0100 Subject: [PATCH 105/394] Comment credentials env vars --- lolautruche/payline-bundle/2.0/manifest.json | 4 ++-- lolautruche/payline-bundle/2.0/post-install.txt | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lolautruche/payline-bundle/2.0/manifest.json b/lolautruche/payline-bundle/2.0/manifest.json index b88d40d4..a849b3c0 100644 --- a/lolautruche/payline-bundle/2.0/manifest.json +++ b/lolautruche/payline-bundle/2.0/manifest.json @@ -6,8 +6,8 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "PAYLINE_MERCHANT_ID": "your_payline_merchant_id", - "PAYLINE_ACCESS_KEY": "your_payline_access_key", + "#PAYLINE_MERCHANT_ID": "your_payline_merchant_id", + "#PAYLINE_ACCESS_KEY": "your_payline_access_key", "PAYLINE_CONTRACT_NUMBER": "your_payline_contract_number", "#1": "Valid values are 'homo', 'prod', 'int' and 'dev'.", "#2": "e.g. 'homo' for 'Homologation', 'prod' for 'Production', 'int' for 'Integration'", diff --git a/lolautruche/payline-bundle/2.0/post-install.txt b/lolautruche/payline-bundle/2.0/post-install.txt index 6c4f3174..c2343b80 100644 --- a/lolautruche/payline-bundle/2.0/post-install.txt +++ b/lolautruche/payline-bundle/2.0/post-install.txt @@ -5,7 +5,10 @@ * Configure Payline environment variables in .env; - * Encrypt sensitive environment variables with bin/console secrets:set command (optional); + * Using Symfony 4.4/5.x: Encrypt sensitive environment variables + with bin/console secrets:set command (optional); + + * Using Symfony 3.4/4.x: Ensure to correctly expose the environment variables commented in `.env` file. * Read the documentation at: https://github.com/lolautruche/LolautruchePaylineBundle/blob/master/Resources/doc/00-index.md From 19a309fa808a372acf5c3df262336f004c5f3483 Mon Sep 17 00:00:00 2001 From: Nicolas Thal Date: Tue, 26 Nov 2019 11:46:56 +0100 Subject: [PATCH 106/394] [PubSubSwarrot] Add base configuration for pubsub bundle --- .../1.0/config/packages/dekalee_pub_sub_swarrot.yaml | 2 ++ dekalee/pubsub-swarrot-bundle/1.0/manifest.json | 11 +++++++++++ dekalee/pubsub-swarrot-bundle/1.0/post-install.txt | 6 ++++++ 3 files changed, 19 insertions(+) create mode 100644 dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml create mode 100644 dekalee/pubsub-swarrot-bundle/1.0/manifest.json create mode 100644 dekalee/pubsub-swarrot-bundle/1.0/post-install.txt diff --git a/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml b/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml new file mode 100644 index 00000000..8bd84fa3 --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/config/packages/dekalee_pub_sub_swarrot.yaml @@ -0,0 +1,2 @@ +dekalee_pub_sub_swarrot: + key_file_path: '%env(DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH)%' diff --git a/dekalee/pubsub-swarrot-bundle/1.0/manifest.json b/dekalee/pubsub-swarrot-bundle/1.0/manifest.json new file mode 100644 index 00000000..706ede30 --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dekalee\\PubSubSwarrotBundle\\DekaleePubSubSwarrotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH": "your-pub_sub-key-file-path" + } +} diff --git a/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt b/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..f2d22fbe --- /dev/null +++ b/dekalee/pubsub-swarrot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleePubSubSwarrot, What's next? + + + * The Dekalee/PubSubSwarrotBundle needs your pubsub configuration. + Modify your DEKALEE_PUBSUB_SWARROT_KEY_FILE_PATH config in .env From 008dbc0157a3ca5d486f75867ac8672348450d5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Fri, 29 Nov 2019 11:58:41 +0100 Subject: [PATCH 107/394] rollback to environment variables --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 8 ++++---- gheb/docusign-bundle/5.0/manifest.json | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index a9d75ef6..f7467fe2 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -4,12 +4,12 @@ docusign: # Authentication credentials to log into docusign. auth_jwt: - private_key: "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem" - integration_key: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours - user_guid: "51b176de-3298-460b-8201-f73e323eee14" # Replace by yours + private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" + integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" + user_guid: "%env(int:DOCUSIGN_USER_GUID)%" # Your DocuSign account id - account_id: 1234567 + account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. diff --git a/gheb/docusign-bundle/5.0/manifest.json b/gheb/docusign-bundle/5.0/manifest.json index fc90c6a2..da2f3c53 100644 --- a/gheb/docusign-bundle/5.0/manifest.json +++ b/gheb/docusign-bundle/5.0/manifest.json @@ -5,6 +5,12 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" }, + "env": { + "DOCUSIGN_PRIVATE_KEY_PATH": "%kernel.project_dir%/%CONFIG_DIR%/jwt/docusign.pem", + "DOCUSIGN_INTEGRATION_KEY": "UUID-DOCUSIGN-INTEGRATION-KEY", + "DOCUSIGN_USER_GUID": "UUID-DOCUSIGN-USER-GUID", + "DOCUSIGN_ACCOUNT_ID": "1234567" + }, "gitignore": [ "/%CONFIG_DIR%/jwt/*.pem" ] From 8cd415650a02a3a82716bf5e4ff38f2e13c5d9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Fri, 29 Nov 2019 12:01:44 +0100 Subject: [PATCH 108/394] fix type env var --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index f7467fe2..10ab314e 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -6,10 +6,10 @@ docusign: auth_jwt: private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" - user_guid: "%env(int:DOCUSIGN_USER_GUID)%" + user_guid: "%env(DOCUSIGN_USER_GUID)%" # Your DocuSign account id - account_id: "%env(DOCUSIGN_ACCOUNT_ID)%" + account_id: "%env(int:DOCUSIGN_ACCOUNT_ID)%" default_signer_name: "Grégoire Hébert" # Name of the person that will be notified and will sign the document if none is sent to the url. default_signer_email: "gregoire@les-tilleuls.coop" # Mail of the person that will be notified and will sign the document if none is sent to the url. From fc690225a05dd6d29eef2eaeeaba51053590816b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20H=C3=A9bert?= Date: Fri, 29 Nov 2019 12:19:34 +0100 Subject: [PATCH 109/394] add int: and resole: on env vars --- gheb/docusign-bundle/5.0/config/packages/docusign.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml index 10ab314e..46494e2a 100644 --- a/gheb/docusign-bundle/5.0/config/packages/docusign.yaml +++ b/gheb/docusign-bundle/5.0/config/packages/docusign.yaml @@ -4,7 +4,7 @@ docusign: # Authentication credentials to log into docusign. auth_jwt: - private_key: "%env(DOCUSIGN_PRIVATE_KEY_PATH)%" + private_key: "%env(resolve:DOCUSIGN_PRIVATE_KEY_PATH)%" integration_key: "%env(DOCUSIGN_INTEGRATION_KEY)%" user_guid: "%env(DOCUSIGN_USER_GUID)%" From c8ff68047fff86bd64dcb4993c22847632c3f402 Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 3 Dec 2019 12:43:12 +0300 Subject: [PATCH 110/394] new bundle - shopkeeper4-comments --- .../shopkeeper4-comments/1.0/config/routes/comments.yaml | 3 +++ andchir/shopkeeper4-comments/1.0/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml create mode 100644 andchir/shopkeeper4-comments/1.0/manifest.json diff --git a/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml new file mode 100644 index 00000000..ad370be3 --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml @@ -0,0 +1,3 @@ +shopkeeper4_comments: + resource: '@CommentsBundle' + type: annotation diff --git a/andchir/shopkeeper4-comments/1.0/manifest.json b/andchir/shopkeeper4-comments/1.0/manifest.json new file mode 100644 index 00000000..79eef4cf --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Andchir\\CommentsBundle\\CommentsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From f89da036411f76cd07e0dc5c8a78a8c9bca08f98 Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 3 Dec 2019 15:57:21 +0300 Subject: [PATCH 111/394] update config --- andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml index ad370be3..4edb88de 100644 --- a/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/routes/comments.yaml @@ -1,3 +1,3 @@ -shopkeeper4_comments: +comments: resource: '@CommentsBundle' type: annotation From 4db2000a0ba342c7acd949051c94588baa093fe2 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 4 Dec 2019 12:53:42 +0300 Subject: [PATCH 112/394] update config --- andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml new file mode 100644 index 00000000..4d45982e --- /dev/null +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -0,0 +1,3 @@ +comments: + comment_class: App\MainBundle\Document\Comment + status_default: pending \ No newline at end of file From 4c2b27717221b12caf48e7897d60ea144d1cb190 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 4 Dec 2019 12:55:04 +0300 Subject: [PATCH 113/394] update config --- andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml index 4d45982e..0dba19fb 100644 --- a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -1,3 +1,3 @@ comments: comment_class: App\MainBundle\Document\Comment - status_default: pending \ No newline at end of file + status_default: pending From 65b7f4248396d39dc6a99fbdcc995f8a3b483c57 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 4 Dec 2019 14:24:17 +0300 Subject: [PATCH 114/394] update config --- .../shopkeeper4-comments/1.0/config/packages/comments.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml index 0dba19fb..4d17bbe8 100644 --- a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -1,3 +1,3 @@ comments: - comment_class: App\MainBundle\Document\Comment - status_default: pending + comment_class: 'App\MainBundle\Document\Comment' + status_default: 'pending' From 7defd6e38880224b9969b8f217fa3ba8f72dd90e Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 4 Dec 2019 14:50:01 +0300 Subject: [PATCH 115/394] update config --- .../shopkeeper4-comments/1.0/config/packages/comments.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml index 4d17bbe8..0dba19fb 100644 --- a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -1,3 +1,3 @@ comments: - comment_class: 'App\MainBundle\Document\Comment' - status_default: 'pending' + comment_class: App\MainBundle\Document\Comment + status_default: pending From d52097beefc508da6d1dc87292ada5df348f91cd Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 5 Dec 2019 12:26:21 +0300 Subject: [PATCH 116/394] update config --- .../shopkeeper4-comments/1.0/config/packages/comments.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml index 0dba19fb..4d17bbe8 100644 --- a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -1,3 +1,3 @@ comments: - comment_class: App\MainBundle\Document\Comment - status_default: pending + comment_class: 'App\MainBundle\Document\Comment' + status_default: 'pending' From 49564ad4794203e9b326855b52e0f45946f4ce64 Mon Sep 17 00:00:00 2001 From: Nicolas Thal Date: Thu, 5 Dec 2019 13:24:37 +0100 Subject: [PATCH 117/394] [AutopilotBundle] Add recepies for autopilot bundle --- .../config/packages/dekalee_autopilot_swarrot.yaml | 2 ++ dekalee/autopilot-bundle/1.0/manifest.json | 11 +++++++++++ dekalee/autopilot-bundle/1.0/post-install.txt | 6 ++++++ 3 files changed, 19 insertions(+) create mode 100644 dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml create mode 100644 dekalee/autopilot-bundle/1.0/manifest.json create mode 100644 dekalee/autopilot-bundle/1.0/post-install.txt diff --git a/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml b/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml new file mode 100644 index 00000000..c49c9917 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/config/packages/dekalee_autopilot_swarrot.yaml @@ -0,0 +1,2 @@ +dekalee_autopilot: + api_key: '%env(DEKALEE_AUTOPILOT_APIKEY)%' diff --git a/dekalee/autopilot-bundle/1.0/manifest.json b/dekalee/autopilot-bundle/1.0/manifest.json new file mode 100644 index 00000000..f48a3719 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dekalee\\AutopilotBundle\\DekaleeAutopilotBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#DEKALEE_AUTOPILOT_APIKEY": "the-autopilot-api-key" + } +} diff --git a/dekalee/autopilot-bundle/1.0/post-install.txt b/dekalee/autopilot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..823bb933 --- /dev/null +++ b/dekalee/autopilot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleeAutopilotSwarrot, What's next? + + + * The Dekalee/AutopilotBundle needs your pubsub configuration. + Modify your DEKALEE_AUTOPILOT_APIKEY config in .env From 3eee84ac5ec8fbfe585ed33d9e6a595b13c9e3e1 Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 6 Dec 2019 14:24:49 +0300 Subject: [PATCH 118/394] update config --- .../shopkeeper4-comments/1.0/config/packages/comments.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml index 4d17bbe8..0dba19fb 100644 --- a/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml +++ b/andchir/shopkeeper4-comments/1.0/config/packages/comments.yaml @@ -1,3 +1,3 @@ comments: - comment_class: 'App\MainBundle\Document\Comment' - status_default: 'pending' + comment_class: App\MainBundle\Document\Comment + status_default: pending From ac5a48b073287df678621da10dcc47c0290bda17 Mon Sep 17 00:00:00 2001 From: Mathias Arlaud Date: Fri, 6 Dec 2019 17:00:33 +0100 Subject: [PATCH 119/394] Add SymbokBundle recipe --- mtarld/symbok-bundle/2.0/config/packages/symbok.yaml | 4 ++++ mtarld/symbok-bundle/2.0/manifest.json | 8 ++++++++ mtarld/symbok-bundle/2.0/post-install.txt | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 mtarld/symbok-bundle/2.0/config/packages/symbok.yaml create mode 100644 mtarld/symbok-bundle/2.0/manifest.json create mode 100644 mtarld/symbok-bundle/2.0/post-install.txt diff --git a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml new file mode 100644 index 00000000..059dff78 --- /dev/null +++ b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml @@ -0,0 +1,4 @@ +# symbok: +# # Namespaces that you want to be processed by symbok +# namespaces: +# - 'App\Entity' diff --git a/mtarld/symbok-bundle/2.0/manifest.json b/mtarld/symbok-bundle/2.0/manifest.json new file mode 100644 index 00000000..00e640e5 --- /dev/null +++ b/mtarld/symbok-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mtarld\\SymbokBundle\\SymbokBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mtarld/symbok-bundle/2.0/post-install.txt b/mtarld/symbok-bundle/2.0/post-install.txt new file mode 100644 index 00000000..ea57b2bf --- /dev/null +++ b/mtarld/symbok-bundle/2.0/post-install.txt @@ -0,0 +1,6 @@ + + What's next for SymbokBundle? + + + * Configure bundle in config/packages/symbok.yaml + * Read the documentation at https://github.com/mtarld/symbok-bundle/blob/master/src/Resources/doc/index.md From 920ca22cdf7a2b796b80dba04730605242afd488 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Mon, 9 Dec 2019 17:22:18 +0100 Subject: [PATCH 120/394] remove configuration overrides --- .../config/packages/networking_init_cms.yaml | 82 ++++++++----------- .../init-cms-bundle/4.0/post-install.txt | 11 +-- 2 files changed, 40 insertions(+), 53 deletions(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 116b49ac..048c4787 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -18,14 +18,6 @@ imports: # Default security configuration # - { resource: "@NetworkingInitCmsBundle/Resources/config/cms/security.yaml" } -# Set templating to twig. FOSUserBundle requires templating to be setup -framework: - templating: { engines: ['twig'] } - cache: - pools: - page.cache: - adapter: cache.app #Setup page cache using template from cache.app - # Set up the serializer to read config file for App Page and User entities jms_serializer: metadata: @@ -37,52 +29,14 @@ jms_serializer: namespace_prefix: "App" path: "%kernel.project_dir%/config/serializer" -# Translation bundle configuration, swap environment variables if mange_locales_only option set to false -lexik_translation: - fallback_locale: '%env(LOCALE)%' # (required) default locale to use - managed_locales: [ '%env(LOCALE)%'] # !IMPORTANT: Change to strings and not environment variables - resources_registration: - type: all # all | files | database - managed_locales_only: false # set to true to only include managed_locales - networking_init_cms: - # Set a cookie in the fronted end for language. If disabled, the URL will be prefixed with the locale - allow_locale_cookie: true - - # Simple php based cache for caching the rendered HTML in the frontend - cache: - activate: true #default false - cache_time: 86400 #default value - cache_service: 'Networking\InitCmsBundle\Cache\PageCache' #default value - - # Show admin toolbar when in the frontend - admin_toolbar: - toolbar: true #Default is activated - position: 'top' #Choices are 'top' or 'bottom' - translation_fallback_route: 'initcms_404' #Default fallback to 404 page - no_translation_template: '@NetworkingInitCms/no_translation_found.html.twig' # - 404_template: '@NetworkingInitCms/error_404.html.twig' #Fallback to a 404 page included - # Tag tree for use in the media manager - show_tag_tree: true #Default is true - multiple_media_tags: true #Default is true - - # Language set up, label is used in the default frontend language switcher menu - languages: - - {label: 'Deutsch', locale: 'de'} - - {label: 'English', locale: 'en'} - - # Add content types here - content_types: - - { name: 'Text' , class: 'Networking\InitCmsBundle\Entity\Text'} - - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} - - # Classes to be used for the page and user entities + #Base classes to be used for the page and user entities class: page: "App\\Entity\\Page" user: "App\\Entity\\User" - # Default template settings to get you started + # Bootstrap some template settings to get you started templates: 'app_single_column': template: "@NetworkingInitCms/sandbox/page/one_column.html.twig" @@ -99,3 +53,35 @@ networking_init_cms: - { name: header , class: 'col-md-12'} - { name: left , class: 'col-md-3'} - { name: right , class: 'col-md-9'} + - + #Set a cookie in the fronted end for language. If disabled, the URL will be prefixed with the locale + #allow_locale_cookie: true + + #Simple php based cache for caching the rendered HTML in the frontend + cache: + activate: true #enable for product, false in dev config + # cache_time: 86400 #default value + # cache_service: 'Networking\InitCmsBundle\Cache\PageCache' #default value + + #Show admin toolbar when in the frontend + #admin_toolbar: + # toolbar: true #Default is activated + # position: 'top' #Choices are 'top' or 'bottom' + + #translation_fallback_route: 'initcms_404' #Default fallback to 404 page + #no_translation_template: '@NetworkingInitCms/no_translation_found.html.twig' # + #404_template: '@NetworkingInitCms/error_404.html.twig' #Fallback to a 404 page included + + # Tag tree for use in the media manager + #show_tag_tree: true #Default is true + #multiple_media_tags: true #Default is true + + #Language set up, label is used in the default frontend language switcher menu + #languages: + # - {label: 'Deutsch', locale: 'de'} + # - {label: 'English', locale: 'en'} + + #Add content types here + #content_types: + # - { name: 'Text' , class: 'Networking\InitCmsBundle\Entity\Text'} + # - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} \ No newline at end of file diff --git a/networking/init-cms-bundle/4.0/post-install.txt b/networking/init-cms-bundle/4.0/post-install.txt index c1367702..0d96c9c9 100644 --- a/networking/init-cms-bundle/4.0/post-install.txt +++ b/networking/init-cms-bundle/4.0/post-install.txt @@ -10,9 +10,10 @@ included with the CMS. 2. Check that the Page and User entities were copied to the correct entity folder, and are configured correctly. 3. Configure your languages in the networking_init_cms.yaml file, for multi-language support. - 4. Clear the cache again so that the new config files are loaded correctly. - 5. Check your database configuration, and back up your database if you haven't done so already. - 6. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands - 7. Use the command networking:initcms:install to install the DB install fixtures and create a superuser admin. + 4. Configure the lexik translation bundles fallback_local and managed_locales parameters to support DB based translations. + 5. Clear the cache again so that the new config files are loaded correctly. + 6. Check your database configuration, and back up your database if you haven't done so already. + 7. Update your database bin/console doctrine:schema:update or using the doctrine migrate commands + 8. Use the command networking:initcms:install to install the DB install fixtures and create a superuser admin. ALTERNATIVELY you can use the networking:initcms:data-setup if you just want to install the data structure and fixtures - 8. Enable or disable full page caching by setting networking_init_cms.cache.activate to true/false + 9. Enable or disable full page caching by setting networking_init_cms.cache.activate to true/false From 7cdfc79ed732356b96c281ed93f310a0d6f63b2f Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Mon, 9 Dec 2019 17:23:31 +0100 Subject: [PATCH 121/394] added new line to end of file --- .../4.0/config/packages/networking_init_cms.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 048c4787..e9c298f1 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -84,4 +84,4 @@ networking_init_cms: #Add content types here #content_types: # - { name: 'Text' , class: 'Networking\InitCmsBundle\Entity\Text'} - # - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} \ No newline at end of file + # - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} From 2d420b31c7943b59aef2a5d1f80c2fd616e6359e Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Mon, 9 Dec 2019 18:31:21 +0100 Subject: [PATCH 122/394] Extra line in template zone removed. Introduced by mistake --- .../4.0/config/packages/networking_init_cms.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index e9c298f1..7d69c145 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -53,7 +53,7 @@ networking_init_cms: - { name: header , class: 'col-md-12'} - { name: left , class: 'col-md-3'} - { name: right , class: 'col-md-9'} - - + #Set a cookie in the fronted end for language. If disabled, the URL will be prefixed with the locale #allow_locale_cookie: true From 37520e1a467e27934343705a97cf3372076470b1 Mon Sep 17 00:00:00 2001 From: Yorkie Chadwick Date: Tue, 10 Dec 2019 08:51:06 +0100 Subject: [PATCH 123/394] remove example config, provide link to documentation --- .../config/packages/networking_init_cms.yaml | 31 ++----------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml index 7d69c145..71e4d363 100644 --- a/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml +++ b/networking/init-cms-bundle/4.0/config/packages/networking_init_cms.yaml @@ -53,35 +53,8 @@ networking_init_cms: - { name: header , class: 'col-md-12'} - { name: left , class: 'col-md-3'} - { name: right , class: 'col-md-9'} - - #Set a cookie in the fronted end for language. If disabled, the URL will be prefixed with the locale - #allow_locale_cookie: true - - #Simple php based cache for caching the rendered HTML in the frontend cache: activate: true #enable for product, false in dev config - # cache_time: 86400 #default value - # cache_service: 'Networking\InitCmsBundle\Cache\PageCache' #default value - #Show admin toolbar when in the frontend - #admin_toolbar: - # toolbar: true #Default is activated - # position: 'top' #Choices are 'top' or 'bottom' - - #translation_fallback_route: 'initcms_404' #Default fallback to 404 page - #no_translation_template: '@NetworkingInitCms/no_translation_found.html.twig' # - #404_template: '@NetworkingInitCms/error_404.html.twig' #Fallback to a 404 page included - - # Tag tree for use in the media manager - #show_tag_tree: true #Default is true - #multiple_media_tags: true #Default is true - - #Language set up, label is used in the default frontend language switcher menu - #languages: - # - {label: 'Deutsch', locale: 'de'} - # - {label: 'English', locale: 'en'} - - #Add content types here - #content_types: - # - { name: 'Text' , class: 'Networking\InitCmsBundle\Entity\Text'} - # - { name: 'Gallery Viewer' , class: 'Networking\InitCmsBundle\Entity\GalleryView'} + # For more information regarding configuration of the CMS Bundle, please visit the following documentation + # https://github.com/networking/init-cms-bundle/blob/master/doc/configuration.md From 330e179ee5a70d824f49065e17b96c6644ed1da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gildas=20Qu=C3=A9m=C3=A9ner?= Date: Tue, 10 Dec 2019 09:10:07 +0100 Subject: [PATCH 124/394] Removes incompatible service The TransactionManager service is not compatible with the preconfigured event store from the prooph/pdo-event-store flex recipe. In order to use it, one must first reconfigure the event store definition to use the PostgresEventStore implementation (instead of the MySqlEventStore implementation). See https://github.com/prooph/pdo-event-store/issues/39 --- .../3.1/config/packages/prooph_event_store_bus_bridge.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml b/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml index ed23c389..b4aa49a0 100644 --- a/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml +++ b/prooph/event-store-bus-bridge/3.1/config/packages/prooph_event_store_bus_bridge.yaml @@ -7,9 +7,3 @@ services: - '@prooph_service_bus.default_event_bus' tags: - { name: 'prooph_event_store.default.plugin' } - - Prooph\EventStoreBusBridge\TransactionManager: - arguments: - - '@app.event_store.default' - tags: - - { name: 'prooph_service_bus.default_command_bus.plugin' } From 3b2438100a26fa23d495d6d5802c94d82f4079f5 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Tue, 10 Dec 2019 09:17:21 +0100 Subject: [PATCH 125/394] Run tests on PHP 7.4 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index deae7cc2..37bf3b5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,11 @@ cache: matrix: fast_finish: true include: - - php: 7.4snapshot + - php: 7.4 env: SKELETON_VERSION="^3.4" - - php: 7.4snapshot + - php: 7.4 env: SKELETON_VERSION="^4.4" - - php: 7.4snapshot + - php: 7.4 env: SKELETON_VERSION="^5.0" before_install: From 029a1e8d8a826b0bbeb76e7958f9d6630f40ee03 Mon Sep 17 00:00:00 2001 From: Baldinof Date: Wed, 11 Dec 2019 10:07:24 +0100 Subject: [PATCH 126/394] Add baldinof/roadrunner-bundle --- .../0.1/config/packages/baldinof_road_runner.yaml | 2 ++ baldinof/roadrunner-bundle/0.1/manifest.json | 14 ++++++++++++++ baldinof/roadrunner-bundle/0.1/post-install.txt | 7 +++++++ 3 files changed, 23 insertions(+) create mode 100644 baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml create mode 100644 baldinof/roadrunner-bundle/0.1/manifest.json create mode 100644 baldinof/roadrunner-bundle/0.1/post-install.txt diff --git a/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml b/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml new file mode 100644 index 00000000..74e34d15 --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/config/packages/baldinof_road_runner.yaml @@ -0,0 +1,2 @@ +baldinof_road_runner: + should_reboot_kernel: false diff --git a/baldinof/roadrunner-bundle/0.1/manifest.json b/baldinof/roadrunner-bundle/0.1/manifest.json new file mode 100644 index 00000000..bbbcf73a --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + ".rr.yaml": ".rr.yaml" + }, + "bundles": { + "Baldinof\\RoadRunnerBundle\\BaldinofRoadRunnerBundle": ["all"] + }, + "gitignore": [ + "/bin/rr" + ] +} diff --git a/baldinof/roadrunner-bundle/0.1/post-install.txt b/baldinof/roadrunner-bundle/0.1/post-install.txt new file mode 100644 index 00000000..c77cdd5d --- /dev/null +++ b/baldinof/roadrunner-bundle/0.1/post-install.txt @@ -0,0 +1,7 @@ + + What's next for RoadRunner Bundle + + + * Download RoadRunner locally: vendor/bin/rr get --location bin/ + * Run your application: bin/rr serve --debug + * Visit http://localhost:8080 From 0b6ef00802a0a9037790c9d0593d590ac222ed3a Mon Sep 17 00:00:00 2001 From: Nicolas Thal Date: Thu, 12 Dec 2019 10:51:53 +0100 Subject: [PATCH 127/394] [EnomBundle] Add recipies for Enom Bundle --- .../1.0/config/packages/dekalee_enom.yaml | 4 ++++ dekalee/enom-bundle/1.0/manifest.json | 13 +++++++++++++ dekalee/enom-bundle/1.0/post-install.txt | 6 ++++++ 3 files changed, 23 insertions(+) create mode 100644 dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml create mode 100644 dekalee/enom-bundle/1.0/manifest.json create mode 100644 dekalee/enom-bundle/1.0/post-install.txt diff --git a/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml b/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml new file mode 100644 index 00000000..42d19cf1 --- /dev/null +++ b/dekalee/enom-bundle/1.0/config/packages/dekalee_enom.yaml @@ -0,0 +1,4 @@ +dekalee_enom: + uid: '%env(ENOM_UID)%' + password: '%env(ENOM_PASSWORD)%' + base_url: '%env(ENOM_BASE_URL)%' diff --git a/dekalee/enom-bundle/1.0/manifest.json b/dekalee/enom-bundle/1.0/manifest.json new file mode 100644 index 00000000..ecc33429 --- /dev/null +++ b/dekalee/enom-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Dekalee\\EnomBundle\\DekaleeEnomBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#ENOM_UID": "your-enom-uid", + "#ENOM_PASSWORD": "your-enom-password", + "#ENOM_BASE_URL": "your-enom-api-base-url" + } +} diff --git a/dekalee/enom-bundle/1.0/post-install.txt b/dekalee/enom-bundle/1.0/post-install.txt new file mode 100644 index 00000000..67075b0b --- /dev/null +++ b/dekalee/enom-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + DekaleeEnomSwarrot, What's next? + + + * The Dekalee/EnomBundle needs your enom configuration. + Modify your ENOM_UID, ENOM_PASSWORD, ENOM_BASE_URL config in .env From bf4035c89155981929ec2ccf3eeaa816e3aa772f Mon Sep 17 00:00:00 2001 From: Big Shark Date: Sun, 15 Dec 2019 03:36:00 +0300 Subject: [PATCH 128/394] Add tg-bot-api/bot-api-base --- .../1.0/config/packages/tg_bot_api.yaml | 18 ++++++++++++++++++ tg-bot-api/bot-api-base/1.0/manifest.json | 8 ++++++++ 2 files changed, 26 insertions(+) create mode 100644 tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml create mode 100644 tg-bot-api/bot-api-base/1.0/manifest.json diff --git a/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml new file mode 100644 index 00000000..f2ac40ba --- /dev/null +++ b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml @@ -0,0 +1,18 @@ +services: + + TgBotApi\BotApiBase\ApiClient: + arguments: + $requestFactory: '@Psr\Http\Message\RequestFactoryInterface' + $streamFactory: '@Psr\Http\Message\StreamFactoryInterface' + $client: '@Psr\Http\Client\ClientInterface' + + TgBotApi\BotApiBase\BotApiNormalizer: null + + TgBotApi\BotApiBase\ApiClientInterface: '@TgBotApi\BotApiBase\ApiClient' + TgBotApi\BotApiBase\NormalizerInterface: '@TgBotApi\BotApiBase\BotApiNormalizer' + + TgBotApi\BotApiBase\BotApi: + arguments: + $botKey: '%env(resolve:TG_BOT_API_KEY)%' + $apiClient: '@TgBotApi\BotApiBase\ApiClientInterface' + $normalizer: '@TgBotApi\BotApiBase\NormalizerInterface' diff --git a/tg-bot-api/bot-api-base/1.0/manifest.json b/tg-bot-api/bot-api-base/1.0/manifest.json new file mode 100644 index 00000000..db543b24 --- /dev/null +++ b/tg-bot-api/bot-api-base/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TG_BOT_API_KEY": "" + } +} From 2aee91eaee3cc78289fd692c66999aa03f267ee7 Mon Sep 17 00:00:00 2001 From: Burak Bolat Date: Mon, 16 Dec 2019 11:46:32 +0300 Subject: [PATCH 129/394] Recipe for 1.0 version of goksagun/scheduler-bundle --- .../1.0/config/packages/scheduler.yaml | 17 +++++++++++++++++ goksagun/scheduler-bundle/1.0/manifest.json | 8 ++++++++ goksagun/scheduler-bundle/1.0/post-install.txt | 7 +++++++ 3 files changed, 32 insertions(+) create mode 100644 goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml create mode 100644 goksagun/scheduler-bundle/1.0/manifest.json create mode 100644 goksagun/scheduler-bundle/1.0/post-install.txt diff --git a/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml b/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml new file mode 100644 index 00000000..1ab4ef08 --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/config/packages/scheduler.yaml @@ -0,0 +1,17 @@ +# A CRON expression is a string representing the schedule for a particular command to execute. +# The parts of a CRON schedule are as follows: +# +# * * * * * +# - - - - - +# | | | | | +# | | | | | +# | | | | +----- day of week (0 - 7) (Sunday=0 or 7) +# | | | +---------- month (1 - 12) +# | | +--------------- day of month (1 - 31) +# | +-------------------- hour (0 - 23) +# +------------------------- min (0 - 59) +scheduler: + tasks: + # You may define all of your scheduled tasks here. + # To get started, let's look at an example of scheduling a task (command). + #- { name: example:command arg --option, expression: "* * * * *" } diff --git a/goksagun/scheduler-bundle/1.0/manifest.json b/goksagun/scheduler-bundle/1.0/manifest.json new file mode 100644 index 00000000..851efb50 --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Goksagun\\SchedulerBundle\\SchedulerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/goksagun/scheduler-bundle/1.0/post-install.txt b/goksagun/scheduler-bundle/1.0/post-install.txt new file mode 100644 index 00000000..94c8c677 --- /dev/null +++ b/goksagun/scheduler-bundle/1.0/post-install.txt @@ -0,0 +1,7 @@ + + What's next for SchedulerBundle? + + + * Configure bundle in config/packages/scheduler.yaml + * Read the documentation at https://github.com/goksagun/scheduler-bundle/blob/master/README.md + \ No newline at end of file From c48f27ab21b1a31a4b07313754e067c8971a8d63 Mon Sep 17 00:00:00 2001 From: knyk Date: Mon, 16 Dec 2019 12:23:32 +0100 Subject: [PATCH 130/394] Added 1.0 version of knyk/mailbox-bundle --- knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml | 2 ++ knyk/mailbox-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml create mode 100644 knyk/mailbox-bundle/1.0/manifest.json diff --git a/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml b/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml new file mode 100644 index 00000000..b6d5af0f --- /dev/null +++ b/knyk/mailbox-bundle/1.0/config/packages/knyk_mailbox.yaml @@ -0,0 +1,2 @@ +mailbox: + connections: [] diff --git a/knyk/mailbox-bundle/1.0/manifest.json b/knyk/mailbox-bundle/1.0/manifest.json new file mode 100644 index 00000000..de287568 --- /dev/null +++ b/knyk/mailbox-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Knyk\\MailboxBundle\\MailboxBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From fec80affb13b852ac90b6493c4a97c5ee8596890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Deruss=C3=A9?= Date: Thu, 28 Nov 2019 08:16:37 +0100 Subject: [PATCH 131/394] Deprecate misd bundle in favor of odolbeau --- .../1.3/config/packages/misd_phone_number.yaml | 8 ++++---- misd/phone-number-bundle/1.3/post-install.txt | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml b/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml index ae476b0c..3ed889af 100644 --- a/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml +++ b/misd/phone-number-bundle/1.3/config/packages/misd_phone_number.yaml @@ -1,6 +1,6 @@ # To persist libphonenumber\PhoneNumber objects, add the Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType mapping to your application's config. # This requires: doctrine/doctrine-bundle -doctrine: - dbal: - types: - phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType +# doctrine: +# dbal: +# types: +# phone_number: Misd\PhoneNumberBundle\Doctrine\DBAL\Types\PhoneNumberType diff --git a/misd/phone-number-bundle/1.3/post-install.txt b/misd/phone-number-bundle/1.3/post-install.txt index 87ff1773..8e6574d3 100644 --- a/misd/phone-number-bundle/1.3/post-install.txt +++ b/misd/phone-number-bundle/1.3/post-install.txt @@ -1,3 +1,9 @@ + + This bundle is Abandoned: use odolbeau/phone-number-bundle instead + + composer remove misd/phone-number-bundle --no-scripts + composer require odolbeau/phone-number-bundle + You now can use the phone bundle as described here: https://github.com/misd-service-development/phone-number-bundle#usage From edba3a4ea974a153bd7329e0f6b0dc1e9bd77434 Mon Sep 17 00:00:00 2001 From: "Olivier M. Mukadi" Date: Tue, 24 Dec 2019 12:47:06 +0100 Subject: [PATCH 132/394] support mukadi/wordpress-bundle v2.0 --- .../1.2/config/packages/mukadi_wordpress.yaml | 3 -- mukadi/wordpress-bundle/1.2/public/.htaccess | 10 ---- .../1.2/public/mu-plugins/symfony-bridge.php | 28 ----------- .../1.2/public/plugins/index.php | 2 - .../1.2/public/themes/wp-blank/footer.php | 3 -- .../1.2/public/themes/wp-blank/functions.php | 46 ------------------ .../1.2/public/themes/wp-blank/header.php | 14 ------ .../1.2/public/themes/wp-blank/index.php | 19 -------- .../1.2/public/themes/wp-blank/screenshot.png | Bin 30089 -> 0 bytes .../1.2/public/themes/wp-blank/style.css | 7 --- .../wordpress-bundle/1.2/public/wp-config.php | 17 ------- .../wordpress-bundle/1.2/sf-wp-bootstrap.php | 40 --------------- .../{1.2 => 2.0}/manifest.json | 10 ++-- .../{1.2 => 2.0}/post-install.txt | 0 14 files changed, 4 insertions(+), 195 deletions(-) delete mode 100644 mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml delete mode 100644 mukadi/wordpress-bundle/1.2/public/.htaccess delete mode 100644 mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/plugins/index.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/footer.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/header.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/screenshot.png delete mode 100644 mukadi/wordpress-bundle/1.2/public/themes/wp-blank/style.css delete mode 100644 mukadi/wordpress-bundle/1.2/public/wp-config.php delete mode 100644 mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php rename mukadi/wordpress-bundle/{1.2 => 2.0}/manifest.json (80%) rename mukadi/wordpress-bundle/{1.2 => 2.0}/post-install.txt (100%) diff --git a/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml b/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml deleted file mode 100644 index 020d6781..00000000 --- a/mukadi/wordpress-bundle/1.2/config/packages/mukadi_wordpress.yaml +++ /dev/null @@ -1,3 +0,0 @@ -mukadi_wordpress: - table_prefix: "%env(WP_PREFIX)%" - wordpress_directory: '%kernel.project_dir%/public/%env(WP_DIR)%' diff --git a/mukadi/wordpress-bundle/1.2/public/.htaccess b/mukadi/wordpress-bundle/1.2/public/.htaccess deleted file mode 100644 index 75662867..00000000 --- a/mukadi/wordpress-bundle/1.2/public/.htaccess +++ /dev/null @@ -1,10 +0,0 @@ -# BEGIN WordPress - - RewriteEngine On - RewriteBase / - RewriteRule ^index\.php$ - [L] - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d - RewriteRule . /index.php [L] - -# END WordPress diff --git a/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php b/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php deleted file mode 100644 index e1185d32..00000000 --- a/mukadi/wordpress-bundle/1.2/public/mu-plugins/symfony-bridge.php +++ /dev/null @@ -1,28 +0,0 @@ -dispatch($name, $event); -} diff --git a/mukadi/wordpress-bundle/1.2/public/plugins/index.php b/mukadi/wordpress-bundle/1.2/public/plugins/index.php deleted file mode 100644 index 5b994538..00000000 --- a/mukadi/wordpress-bundle/1.2/public/plugins/index.php +++ /dev/null @@ -1,2 +0,0 @@ - - - diff --git a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php deleted file mode 100644 index aaf1f9f3..00000000 --- a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/functions.php +++ /dev/null @@ -1,46 +0,0 @@ - -> - - - - - -> - -
- -
diff --git a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php b/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php deleted file mode 100644 index 74870a14..00000000 --- a/mukadi/wordpress-bundle/1.2/public/themes/wp-blank/index.php +++ /dev/null @@ -1,19 +0,0 @@ - - -
- -
-
-

-
- - -
- -
-

Nothing to see.

-
- -
- -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⩔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 n>l^Z~AJ@O$x_^j}_>Gapply(); -/** Sets up WordPress vars and included files. */ -require_once(ABSPATH . 'wp-settings.php'); diff --git a/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php b/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php deleted file mode 100644 index 3b66dfce..00000000 --- a/mukadi/wordpress-bundle/1.2/sf-wp-bootstrap.php +++ /dev/null @@ -1,40 +0,0 @@ -load(__DIR__.'/../.env'); - } - $env = $_SERVER['APP_ENV'] ?? 'dev'; - $debug = (bool) ($_SERVER['APP_DEBUG'] ?? ('prod' !== $env)); - if ($debug) { - umask(0000); - Debug::enable(); - } - define('WP_DEBUG', $debug); - if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? false) { - Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_ALL ^ Request::HEADER_X_FORWARDED_HOST); - } - if ($trustedHosts = $_SERVER['TRUSTED_HOSTS'] ?? false) { - Request::setTrustedHosts(explode(',', $trustedHosts)); - } - $kernel = new Kernel($env, $debug); - # SF container in WP - $GLOBALS['sf'] = function ($id) use (&$kernel) { - return $kernel->getContainer()->get($id); - }; - $kernelRequest = Request::createFromGlobals(); - $kernelResponse = $kernel->handle($kernelRequest); - $kernelResponse->send(); - $kernel->terminate($kernelRequest, $kernelResponse); -} -run(); diff --git a/mukadi/wordpress-bundle/1.2/manifest.json b/mukadi/wordpress-bundle/2.0/manifest.json similarity index 80% rename from mukadi/wordpress-bundle/1.2/manifest.json rename to mukadi/wordpress-bundle/2.0/manifest.json index d9ed6f44..2c5cd91f 100644 --- a/mukadi/wordpress-bundle/1.2/manifest.json +++ b/mukadi/wordpress-bundle/2.0/manifest.json @@ -2,13 +2,11 @@ "bundles": { "Mukadi\\WordpressBundle\\MukadiWordpressBundle": ["all"] }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/", - "public/": "%PUBLIC_DIR%", - "sf-wp-bootstrap.php": "sf-wp-bootstrap.php" - }, "copy-from-package": { - "wp-cli.yml": "wp-cli.yml" + "res/wp-cli.yml": "wp-cli.yml", + "res/config/": "%CONFIG_DIR%/", + "res/public/": "%PUBLIC_DIR%", + "res/sf-wp-bootstrap.php": "sf-wp-bootstrap.php" }, "env": { "WP_PREFIX": "wp_", diff --git a/mukadi/wordpress-bundle/1.2/post-install.txt b/mukadi/wordpress-bundle/2.0/post-install.txt similarity index 100% rename from mukadi/wordpress-bundle/1.2/post-install.txt rename to mukadi/wordpress-bundle/2.0/post-install.txt From 7d2cf04139df0971418c7c69a4cb555daec85789 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 26 Dec 2019 14:47:56 +0100 Subject: [PATCH 133/394] PHP-Translations version 0.10.0 --- .../0.10/config/packages/dev/php_translation.yaml | 5 +++++ .../0.10/config/packages/php_translation.yaml | 11 +++++++++++ .../0.10/config/routes/dev/php_translation.yaml | 6 ++++++ .../0.10/config/routes/php_translation.yaml | 3 +++ php-translation/symfony-bundle/0.10/manifest.json | 8 ++++++++ 5 files changed, 33 insertions(+) create mode 100644 php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/manifest.json diff --git a/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml new file mode 100644 index 00000000..53398fbc --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml @@ -0,0 +1,5 @@ +translation: + symfony_profiler: + enabled: true + webui: + enabled: true diff --git a/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml new file mode 100644 index 00000000..bc6cd978 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml @@ -0,0 +1,11 @@ +translation: + locales: ["en"] + edit_in_place: + enabled: false + config_name: app + configs: + app: + dirs: ["%kernel.project_dir%/templates", "%kernel.project_dir%/src"] + output_dir: "%kernel.project_dir%/translations" + excluded_names: ["*TestCase.php", "*Test.php"] + excluded_dirs: [cache, data, logs] diff --git a/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml new file mode 100644 index 00000000..f0e3975f --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml @@ -0,0 +1,6 @@ +_translation_webui: + resource: "@TranslationBundle/Resources/config/routing_webui.yaml" + prefix: /admin + +_translation_profiler: + resource: '@TranslationBundle/Resources/config/routing_symfony_profiler.yaml' diff --git a/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml new file mode 100644 index 00000000..e70e16fe --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml @@ -0,0 +1,3 @@ +_translation_edit_in_place: + resource: '@TranslationBundle/Resources/config/routing_edit_in_place.yaml' + prefix: /admin diff --git a/php-translation/symfony-bundle/0.10/manifest.json b/php-translation/symfony-bundle/0.10/manifest.json new file mode 100644 index 00000000..e7a617c6 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Translation\\Bundle\\TranslationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 922d747b3109180f13367380d7196b3810c56f61 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Sat, 28 Dec 2019 12:29:49 +0100 Subject: [PATCH 134/394] Cleared the last line of spaces --- goksagun/scheduler-bundle/1.0/post-install.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/goksagun/scheduler-bundle/1.0/post-install.txt b/goksagun/scheduler-bundle/1.0/post-install.txt index 94c8c677..406de4cb 100644 --- a/goksagun/scheduler-bundle/1.0/post-install.txt +++ b/goksagun/scheduler-bundle/1.0/post-install.txt @@ -4,4 +4,3 @@ * Configure bundle in config/packages/scheduler.yaml * Read the documentation at https://github.com/goksagun/scheduler-bundle/blob/master/README.md - \ No newline at end of file From a6b6bdbd362ec5efe97bb6d1b5e88a370917bb99 Mon Sep 17 00:00:00 2001 From: Mathias Arlaud Date: Thu, 2 Jan 2020 13:24:29 +0100 Subject: [PATCH 135/394] Remove yaml config useless comments --- mtarld/symbok-bundle/2.0/config/packages/symbok.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml index 059dff78..f0aff8e2 100644 --- a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml +++ b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml @@ -1,4 +1,4 @@ -# symbok: -# # Namespaces that you want to be processed by symbok -# namespaces: -# - 'App\Entity' +symbok: + # Namespaces that you want to be processed by symbok + namespaces: + # - 'App\Entity' From f191f25873f3bdcb0c1cda127d9df6b89ee10f72 Mon Sep 17 00:00:00 2001 From: Mathias Arlaud Date: Thu, 2 Jan 2020 13:26:14 +0100 Subject: [PATCH 136/394] Fix yaml config indentation --- mtarld/symbok-bundle/2.0/config/packages/symbok.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml index f0aff8e2..f4666061 100644 --- a/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml +++ b/mtarld/symbok-bundle/2.0/config/packages/symbok.yaml @@ -1,4 +1,4 @@ symbok: - # Namespaces that you want to be processed by symbok - namespaces: - # - 'App\Entity' + # Namespaces that you want to be processed by symbok + namespaces: + # - 'App\Entity' From 882358a9520b40ba693e8229926a48af78998fda Mon Sep 17 00:00:00 2001 From: Spomky Date: Mon, 6 Jan 2020 13:23:47 +0100 Subject: [PATCH 137/394] Webauthn Bundle configuration, env and routes added --- .../3.0/config/routes/webauthn_routes.php | 9 +++++ .../3.0/config/webauthn.yaml | 37 +++++++++++++++++++ .../webauthn-symfony-bundle/3.0/manifest.json | 12 ++++++ 3 files changed, 58 insertions(+) create mode 100644 web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php create mode 100644 web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml create mode 100644 web-auth/webauthn-symfony-bundle/3.0/manifest.json diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php new file mode 100644 index 00000000..f8355132 --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php @@ -0,0 +1,9 @@ +import('.', 'webauthn'); +}; diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml new file mode 100644 index 00000000..f269f575 --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml @@ -0,0 +1,37 @@ +webauthn: +# logger: null + credential_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialSourceRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! + user_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialUserEntityRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! + creation_profiles: + default: + rp: + name: '%env(RELAYING_PARTY_NAME)%' # CHANGE THIS! + id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null +# icon: null # +# challenge_length: 32 +# timeout: 60000 +# authenticator_selection_criteria: +# attachment_mode: !php/const Webauthn\AuthenticatorSelectionCriteria::AUTHENTICATOR_ATTACHMENT_NO_PREFERENCE +# require_resident_key: false +# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED +# extensions: +# loc: true +# public_key_credential_parameters: # You should not change this list +# - !php/const Cose\Algorithms::COSE_ALGORITHM_EdDSA #Order is important. Preferred algorithms go first +# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256K +# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES384 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES512 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS256 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS384 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS512 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS256 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS384 +# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS512 +# attestation_conveyance: !php/const Webauthn\PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE + request_profiles: + default: + rp_id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null +# metadata_service: +# enabled: false +# repository: 'App\Repository\MetadataStatementRepository' diff --git a/web-auth/webauthn-symfony-bundle/3.0/manifest.json b/web-auth/webauthn-symfony-bundle/3.0/manifest.json new file mode 100644 index 00000000..0c2d2d7d --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Webauthn\\Bundle\\WebauthnBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%" + }, + "env": { + "RELAYING_PARTY_ID": "example.com", + "RELAYING_PARTY_NAME": "My Application" + } +} From c67f68f8820f50d1a7deb3408fe2fcd35b2f6458 Mon Sep 17 00:00:00 2001 From: Jonas Gielen Date: Tue, 7 Jan 2020 10:04:25 +0100 Subject: [PATCH 138/394] add transip-api-bundle recipe --- .../1.2/config/packages/transip_api.yaml | 4 ++++ verschoof/transip-api-bundle/1.2/manifest.json | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml create mode 100644 verschoof/transip-api-bundle/1.2/manifest.json diff --git a/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml new file mode 100644 index 00000000..bff0ff6c --- /dev/null +++ b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml @@ -0,0 +1,4 @@ +transip_api: + login : '%env(VERSCHOOF_TRANSIP_API_LOGIN)%' + private_key : '%env(VERSCHOOF_TRANSIP_API_PRIVATE_KEY)%' + read_only : true \ No newline at end of file diff --git a/verschoof/transip-api-bundle/1.2/manifest.json b/verschoof/transip-api-bundle/1.2/manifest.json new file mode 100644 index 00000000..f1fc43a8 --- /dev/null +++ b/verschoof/transip-api-bundle/1.2/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Verschoof\\TransipApiBundle\\TransipApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "privatekey is a multiline key from transip, just remove the breaks to create a one-liner", + "VERSCHOOF_TRANSIP_API_LOGIN": "your-api_login", + "VERSCHOOF_TRANSIP_API_PRIVATE_KEY": "your-private_key", + } +} From 26f10f5fbe13e839abafb59ed8099746e8965d72 Mon Sep 17 00:00:00 2001 From: Jonas Gielen Date: Tue, 7 Jan 2020 10:12:09 +0100 Subject: [PATCH 139/394] fix continuous-integration/symfony/pr errors --- .../transip-api-bundle/1.2/config/packages/transip_api.yaml | 2 +- verschoof/transip-api-bundle/1.2/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml index bff0ff6c..1eccd204 100644 --- a/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml +++ b/verschoof/transip-api-bundle/1.2/config/packages/transip_api.yaml @@ -1,4 +1,4 @@ transip_api: login : '%env(VERSCHOOF_TRANSIP_API_LOGIN)%' private_key : '%env(VERSCHOOF_TRANSIP_API_PRIVATE_KEY)%' - read_only : true \ No newline at end of file + read_only : true diff --git a/verschoof/transip-api-bundle/1.2/manifest.json b/verschoof/transip-api-bundle/1.2/manifest.json index f1fc43a8..2f8a1fdf 100644 --- a/verschoof/transip-api-bundle/1.2/manifest.json +++ b/verschoof/transip-api-bundle/1.2/manifest.json @@ -8,6 +8,6 @@ "env": { "#1": "privatekey is a multiline key from transip, just remove the breaks to create a one-liner", "VERSCHOOF_TRANSIP_API_LOGIN": "your-api_login", - "VERSCHOOF_TRANSIP_API_PRIVATE_KEY": "your-private_key", + "VERSCHOOF_TRANSIP_API_PRIVATE_KEY": "your-private_key" } } From e80d81fbe744eb796f5f60ab66dd1fb6fd17ded2 Mon Sep 17 00:00:00 2001 From: Spomky Date: Tue, 7 Jan 2020 22:16:28 +0100 Subject: [PATCH 140/394] Token binding handler added --- web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml index f269f575..2a912843 100644 --- a/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml +++ b/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml @@ -2,6 +2,7 @@ webauthn: # logger: null credential_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialSourceRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! user_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialUserEntityRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! + token_binding_support_handler: 'Webauthn\TokenBinding\IgnoreTokenBindingHandler' creation_profiles: default: rp: @@ -32,6 +33,11 @@ webauthn: request_profiles: default: rp_id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null +# challenge_length: 32 +# timeout: 60000 +# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED +# extensions: +# loc: true # metadata_service: # enabled: false # repository: 'App\Repository\MetadataStatementRepository' From dde395e52693af71699c9db26773a1e72f7b1f7a Mon Sep 17 00:00:00 2001 From: Spomky Date: Tue, 7 Jan 2020 22:40:35 +0100 Subject: [PATCH 141/394] Config moved to the correct folder --- .../3.0/config/{ => packages}/webauthn.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename web-auth/webauthn-symfony-bundle/3.0/config/{ => packages}/webauthn.yaml (100%) diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml similarity index 100% rename from web-auth/webauthn-symfony-bundle/3.0/config/webauthn.yaml rename to web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml From 0e158ac607cb4382495f7d85492355a590b8291f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Wed, 8 Jan 2020 11:25:13 +0100 Subject: [PATCH 142/394] Upgrading Recipe to match new GraphQLite v4 release --- thecodingmachine/graphqlite-bundle/4.0/manifest.json | 8 ++++++++ thecodingmachine/graphqlite-bundle/4.0/post-install.txt | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 thecodingmachine/graphqlite-bundle/4.0/manifest.json create mode 100644 thecodingmachine/graphqlite-bundle/4.0/post-install.txt diff --git a/thecodingmachine/graphqlite-bundle/4.0/manifest.json b/thecodingmachine/graphqlite-bundle/4.0/manifest.json new file mode 100644 index 00000000..28b18d53 --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "TheCodingMachine\\Graphqlite\\Bundle\\GraphqliteBundle": ["all"] + }, + "copy-from-package": { + "config-template/": "%CONFIG_DIR%/" + } +} diff --git a/thecodingmachine/graphqlite-bundle/4.0/post-install.txt b/thecodingmachine/graphqlite-bundle/4.0/post-install.txt new file mode 100644 index 00000000..3bae48d0 --- /dev/null +++ b/thecodingmachine/graphqlite-bundle/4.0/post-install.txt @@ -0,0 +1,7 @@ + + GraphQLite Configuration + + + * Edit the config/packages/graphqlite.yml file to adapt the controllers and the types namespaces to your project. + +Documentation: https://graphqlite.thecodingmachine.io/docs/symfony-bundle From b5ae19111ad7363062989a02c940db0c04089f3d Mon Sep 17 00:00:00 2001 From: karser Date: Thu, 9 Jan 2020 20:07:57 +0200 Subject: [PATCH 143/394] Added KarserRecaptcha3Bundle --- .../0.1/config/packages/karser_recaptcha3.yaml | 5 +++++ karser/karser-recaptcha3-bundle/0.1/manifest.json | 13 +++++++++++++ .../karser-recaptcha3-bundle/0.1/post-install.txt | 6 ++++++ 3 files changed, 24 insertions(+) create mode 100644 karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml create mode 100644 karser/karser-recaptcha3-bundle/0.1/manifest.json create mode 100644 karser/karser-recaptcha3-bundle/0.1/post-install.txt diff --git a/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml b/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml new file mode 100644 index 00000000..71f4fcdd --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/config/packages/karser_recaptcha3.yaml @@ -0,0 +1,5 @@ +karser_recaptcha3: + site_key: '%env(RECAPTCHA3_KEY)%' + secret_key: '%env(RECAPTCHA3_SECRET)%' + score_threshold: 0.5 + enabled: true diff --git a/karser/karser-recaptcha3-bundle/0.1/manifest.json b/karser/karser-recaptcha3-bundle/0.1/manifest.json new file mode 100644 index 00000000..c2147802 --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Karser\\Recaptcha3Bundle\\KarserRecaptcha3Bundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "Get your API key and secret from https://g.co/recaptcha/v3", + "RECAPTCHA3_KEY": "my_site_key", + "RECAPTCHA3_SECRET": "my_secret" + } +} diff --git a/karser/karser-recaptcha3-bundle/0.1/post-install.txt b/karser/karser-recaptcha3-bundle/0.1/post-install.txt new file mode 100644 index 00000000..2d991483 --- /dev/null +++ b/karser/karser-recaptcha3-bundle/0.1/post-install.txt @@ -0,0 +1,6 @@ + + What's next for Karser Recaptcha3 Bundle? + + + * Make sure you have proper values in your .env file + * Read the documentation at https://github.com/karser/KarserRecaptcha3Bundle From dec3d882e88935ccdbd57747a3d91bb54be44fb9 Mon Sep 17 00:00:00 2001 From: Roni Kumar Saha Date: Mon, 13 Jan 2020 08:31:49 +0600 Subject: [PATCH 144/394] Remove deprecated configuration --- .../easy-audit/2.0/config/packages/xiidea_easy_audit.yaml | 5 +++++ xiidea/easy-audit/2.0/manifest.json | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml create mode 100644 xiidea/easy-audit/2.0/manifest.json diff --git a/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml new file mode 100644 index 00000000..d8780cf6 --- /dev/null +++ b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml @@ -0,0 +1,5 @@ +# Read the documentation: http://xiidea.github.io/EasyAuditBundle/ +xiidea_easy_audit: + audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog + default_logger: false + user_property : null # or username diff --git a/xiidea/easy-audit/2.0/manifest.json b/xiidea/easy-audit/2.0/manifest.json new file mode 100644 index 00000000..db79aa57 --- /dev/null +++ b/xiidea/easy-audit/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Xiidea\\EasyAuditBundle\\XiideaEasyAuditBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From eccf1f76a14a6de3d3643b4ef271e2466a7d9485 Mon Sep 17 00:00:00 2001 From: Al Ganiev Date: Tue, 14 Jan 2020 19:12:13 +1000 Subject: [PATCH 145/394] Added config for version 10 --- .../10.0/config/packages/fm_elfinder.yaml | 9 +++++++++ .../10.0/config/routes/fm_elfinder.yaml | 2 ++ helios-ag/fm-elfinder-bundle/10.0/manifest.json | 8 ++++++++ 3 files changed, 19 insertions(+) create mode 100644 helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml create mode 100644 helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml create mode 100644 helios-ag/fm-elfinder-bundle/10.0/manifest.json diff --git a/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml new file mode 100644 index 00000000..0e0e935b --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml @@ -0,0 +1,9 @@ +fm_elfinder: + instances: + default: + relative_path: true + connector: + roots: + uploads: + driver: LocalFileSystem + path: uploads diff --git a/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml b/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml new file mode 100644 index 00000000..6f423836 --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/config/routes/fm_elfinder.yaml @@ -0,0 +1,2 @@ +fm_elfinder: + resource: "@FMElfinderBundle/Resources/config/routing.yaml" diff --git a/helios-ag/fm-elfinder-bundle/10.0/manifest.json b/helios-ag/fm-elfinder-bundle/10.0/manifest.json new file mode 100644 index 00000000..70b77d43 --- /dev/null +++ b/helios-ag/fm-elfinder-bundle/10.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "FM\\ElfinderBundle\\FMElfinderBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 46fc76f297c03b966932b623aac2e47563469084 Mon Sep 17 00:00:00 2001 From: Maxim Date: Thu, 16 Jan 2020 02:34:08 +0300 Subject: [PATCH 146/394] Update tg-bot-api/bot-api-base --- tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml index f2ac40ba..96ea839b 100644 --- a/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml +++ b/tg-bot-api/bot-api-base/1.0/config/packages/tg_bot_api.yaml @@ -16,3 +16,8 @@ services: $botKey: '%env(resolve:TG_BOT_API_KEY)%' $apiClient: '@TgBotApi\BotApiBase\ApiClientInterface' $normalizer: '@TgBotApi\BotApiBase\NormalizerInterface' + + TgBotApi\BotApiBase\BotApiComplete: + parent: TgBotApi\BotApiBase\BotApi + + TgBotApi\BotApiBase\BotApiInterface: '@TgBotApi\BotApiBase\BotApi' From 47b496711af77a9e3f892af5e60d4a2e70be30fa Mon Sep 17 00:00:00 2001 From: "Olivier M. Mukadi" Date: Mon, 20 Jan 2020 15:34:00 +0100 Subject: [PATCH 147/394] Add mukadi/wallet-bundle 1.0 support --- mukadi/wallet-bundle/1.0/manifest.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 mukadi/wallet-bundle/1.0/manifest.json diff --git a/mukadi/wallet-bundle/1.0/manifest.json b/mukadi/wallet-bundle/1.0/manifest.json new file mode 100644 index 00000000..bf69801d --- /dev/null +++ b/mukadi/wallet-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Mukadi\\WalletBundle\\MukadiWalletBundle": ["all"] + }, + "copy-from-package": { + "res/config/": "%CONFIG_DIR%/", + "res/Entity/": "%SRC_DIR%/Entity/", + "res/Repository/": "%SRC_DIR%/Repository/" + } +} From 0fec66a5b3f00cae6535503b61de6e53d4df2089 Mon Sep 17 00:00:00 2001 From: "Olivier M. Mukadi" Date: Mon, 20 Jan 2020 15:58:11 +0100 Subject: [PATCH 148/394] fix manifest --- mukadi/wallet-bundle/1.0/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mukadi/wallet-bundle/1.0/manifest.json b/mukadi/wallet-bundle/1.0/manifest.json index bf69801d..dd57ce4e 100644 --- a/mukadi/wallet-bundle/1.0/manifest.json +++ b/mukadi/wallet-bundle/1.0/manifest.json @@ -3,8 +3,8 @@ "Mukadi\\WalletBundle\\MukadiWalletBundle": ["all"] }, "copy-from-package": { - "res/config/": "%CONFIG_DIR%/", "res/Entity/": "%SRC_DIR%/Entity/", - "res/Repository/": "%SRC_DIR%/Repository/" + "res/Repository/": "%SRC_DIR%/Repository/", + "res/config/": "%CONFIG_DIR%/" } } From 5c91b0c60fac4e91fe5a80d0b9040e155fbd1655 Mon Sep 17 00:00:00 2001 From: "Olivier M. Mukadi" Date: Mon, 20 Jan 2020 16:59:28 +0100 Subject: [PATCH 149/394] repost commit --- mukadi/wallet-bundle/1.0/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mukadi/wallet-bundle/1.0/manifest.json b/mukadi/wallet-bundle/1.0/manifest.json index dd57ce4e..bf69801d 100644 --- a/mukadi/wallet-bundle/1.0/manifest.json +++ b/mukadi/wallet-bundle/1.0/manifest.json @@ -3,8 +3,8 @@ "Mukadi\\WalletBundle\\MukadiWalletBundle": ["all"] }, "copy-from-package": { + "res/config/": "%CONFIG_DIR%/", "res/Entity/": "%SRC_DIR%/Entity/", - "res/Repository/": "%SRC_DIR%/Repository/", - "res/config/": "%CONFIG_DIR%/" + "res/Repository/": "%SRC_DIR%/Repository/" } } From a82c8111be804228ef274fb3d4b870dd475d618c Mon Sep 17 00:00:00 2001 From: Florian Bastien Date: Thu, 23 Jan 2020 22:19:40 +0100 Subject: [PATCH 150/394] [symfony/apache-pack] Better FollowSymlinks suggestion Add "+" before commented out FollowSymlinks option so that it wouldn't overwrite other options --- symfony/apache-pack/1.0/public/.htaccess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/apache-pack/1.0/public/.htaccess b/symfony/apache-pack/1.0/public/.htaccess index 0379bfca..2776637c 100644 --- a/symfony/apache-pack/1.0/public/.htaccess +++ b/symfony/apache-pack/1.0/public/.htaccess @@ -9,7 +9,7 @@ DirectoryIndex index.php # feature in your server configuration. Uncomment the following line if you # install assets as symlinks or if you experience problems related to symlinks # when compiling LESS/Sass/CoffeScript assets. -# Options FollowSymlinks +# Options +FollowSymlinks # Disabling MultiViews prevents unwanted negotiation, e.g. "/index" should not resolve # to the front controller "/index.php" but be rewritten to "/index.php/index". From f1bc1ac966e9becd5987a12ebcd5290652284f3d Mon Sep 17 00:00:00 2001 From: Al Ganiev Date: Sun, 26 Jan 2020 19:49:25 +1000 Subject: [PATCH 151/394] Removed optional param for triggering travis --- .../fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml index 0e0e935b..da622abf 100644 --- a/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml +++ b/helios-ag/fm-elfinder-bundle/10.0/config/packages/fm_elfinder.yaml @@ -1,7 +1,6 @@ fm_elfinder: instances: default: - relative_path: true connector: roots: uploads: From b71f65f013bc534bd7ead76a6ea9435985debb28 Mon Sep 17 00:00:00 2001 From: core23 Date: Sat, 1 Feb 2020 20:22:30 +0100 Subject: [PATCH 152/394] Add nucleos/user-bundle --- .../1.1/config/packages/nucleos_user.yaml | 9 +++++++++ .../1.1/config/routes/nucleos_user.yaml | 2 ++ nucleos/user-bundle/1.1/manifest.json | 13 +++++++++++++ .../user-bundle/1.1/src/Entity/User/Group.php | 15 +++++++++++++++ .../user-bundle/1.1/src/Entity/User/User.php | 18 ++++++++++++++++++ 5 files changed, 57 insertions(+) create mode 100644 nucleos/user-bundle/1.1/config/packages/nucleos_user.yaml create mode 100644 nucleos/user-bundle/1.1/config/routes/nucleos_user.yaml create mode 100644 nucleos/user-bundle/1.1/manifest.json create mode 100644 nucleos/user-bundle/1.1/src/Entity/User/Group.php create mode 100644 nucleos/user-bundle/1.1/src/Entity/User/User.php diff --git a/nucleos/user-bundle/1.1/config/packages/nucleos_user.yaml b/nucleos/user-bundle/1.1/config/packages/nucleos_user.yaml new file mode 100644 index 00000000..636cf4b2 --- /dev/null +++ b/nucleos/user-bundle/1.1/config/packages/nucleos_user.yaml @@ -0,0 +1,9 @@ +nucleos_user: + firewall_name: main + + from_email: '%env(MAIL_SENDER)%' + + user_class: 'App\Entity\User\User' + + group: + group_class: 'App\Entity\User\Group' diff --git a/nucleos/user-bundle/1.1/config/routes/nucleos_user.yaml b/nucleos/user-bundle/1.1/config/routes/nucleos_user.yaml new file mode 100644 index 00000000..08cc11e4 --- /dev/null +++ b/nucleos/user-bundle/1.1/config/routes/nucleos_user.yaml @@ -0,0 +1,2 @@ +nucleos_user: + resource: "@NucleosUserBundle/Resources/config/routing/all.xml" diff --git a/nucleos/user-bundle/1.1/manifest.json b/nucleos/user-bundle/1.1/manifest.json new file mode 100644 index 00000000..2c9507f2 --- /dev/null +++ b/nucleos/user-bundle/1.1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Nucleos\\UserBundle\\NucleosUserBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "MAIL_SENDER": "no-reply@localhost" + } +} + diff --git a/nucleos/user-bundle/1.1/src/Entity/User/Group.php b/nucleos/user-bundle/1.1/src/Entity/User/Group.php new file mode 100644 index 00000000..6e7d9b1e --- /dev/null +++ b/nucleos/user-bundle/1.1/src/Entity/User/Group.php @@ -0,0 +1,15 @@ +id = $id; + } +} diff --git a/nucleos/user-bundle/1.1/src/Entity/User/User.php b/nucleos/user-bundle/1.1/src/Entity/User/User.php new file mode 100644 index 00000000..f37340f4 --- /dev/null +++ b/nucleos/user-bundle/1.1/src/Entity/User/User.php @@ -0,0 +1,18 @@ + + */ +class User extends BaseUser +{ + public function setId(string $id): void + { + $this->id = $id; + } +} From ec047ce3dac014c8663145679c8ac17ed4d80486 Mon Sep 17 00:00:00 2001 From: "tien.xuan.vo" Date: Sun, 8 Dec 2019 09:13:29 +0700 Subject: [PATCH 153/394] Add version 1.15 of tienvx/mbt-bundle and tienvx/mbt-api-bundle --- .../1.15/config/packages/tienvx_mbt_api.yaml | 2 ++ .../1.15/config/routes/tienvx_mbt_api.yaml | 3 +++ tienvx/mbt-api-bundle/1.15/manifest.json | 11 +++++++++++ .../1.15/config/packages/dev/models/.gitignore | 1 + .../packages/dev/predefined-cases/.gitignore | 1 + .../1.15/config/packages/tienvx_mbt.yaml | 14 ++++++++++++++ tienvx/mbt-bundle/1.15/manifest.json | 13 +++++++++++++ .../1.15/var/storage/screenshots/.gitignore | 0 8 files changed, 45 insertions(+) create mode 100644 tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml create mode 100644 tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml create mode 100644 tienvx/mbt-api-bundle/1.15/manifest.json create mode 100644 tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore create mode 100644 tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore create mode 100644 tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml create mode 100644 tienvx/mbt-bundle/1.15/manifest.json create mode 100644 tienvx/mbt-bundle/1.15/var/storage/screenshots/.gitignore diff --git a/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml new file mode 100644 index 00000000..666a6153 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/config/packages/tienvx_mbt_api.yaml @@ -0,0 +1,2 @@ +tienvx_mbt_api: + dot_binary: '%env(DOT_BINARY)%' diff --git a/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml b/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml new file mode 100644 index 00000000..d1ee11b4 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/config/routes/tienvx_mbt_api.yaml @@ -0,0 +1,3 @@ +tienvx_mbt_api: + resource: '@TienvxMbtApiBundle/Resources/config/routing.xml' + prefix: '/mbt-api' diff --git a/tienvx/mbt-api-bundle/1.15/manifest.json b/tienvx/mbt-api-bundle/1.15/manifest.json new file mode 100644 index 00000000..c4979605 --- /dev/null +++ b/tienvx/mbt-api-bundle/1.15/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtApiBundle\\TienvxMbtApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "DOT_BINARY": "dot" + } +} diff --git a/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore b/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/dev/models/.gitignore @@ -0,0 +1 @@ + diff --git a/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore b/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/dev/predefined-cases/.gitignore @@ -0,0 +1 @@ + diff --git a/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml b/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml new file mode 100644 index 00000000..d85a7ea2 --- /dev/null +++ b/tienvx/mbt-bundle/1.15/config/packages/tienvx_mbt.yaml @@ -0,0 +1,14 @@ +imports: + - { resource: dev/models/*.yaml } + - { resource: dev/predefined-cases/*.yaml } + +tienvx_mbt: + email_from: '%env(EMAIL_FROM)%' + admin_url: '%env(ADMIN_URL)%' + +flysystem: + storages: + mbt.storage: + adapter: 'local' + options: + directory: "%kernel.project_dir%/var/storage/screenshots" diff --git a/tienvx/mbt-bundle/1.15/manifest.json b/tienvx/mbt-bundle/1.15/manifest.json new file mode 100644 index 00000000..664fdd5e --- /dev/null +++ b/tienvx/mbt-bundle/1.15/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtBundle\\TienvxMbtBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "var/storage/screenshots/": "%VAR_DIR%/storage/screenshots/" + }, + "env": { + "EMAIL_FROM": "from@example.com", + "ADMIN_URL": "http://localhost" + } +} diff --git a/tienvx/mbt-bundle/1.15/var/storage/screenshots/.gitignore b/tienvx/mbt-bundle/1.15/var/storage/screenshots/.gitignore new file mode 100644 index 00000000..e69de29b From a4c74db3499042c60b1b39b0f93cba91667de753 Mon Sep 17 00:00:00 2001 From: Xavier Coureau Date: Mon, 3 Feb 2020 15:09:31 +0100 Subject: [PATCH 154/394] Adds receipe for moneyphp/money-bundle --- moneyphp/money-bundle/0.1/config/packages/money.yaml | 3 +++ moneyphp/money-bundle/0.1/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 moneyphp/money-bundle/0.1/config/packages/money.yaml create mode 100644 moneyphp/money-bundle/0.1/manifest.json diff --git a/moneyphp/money-bundle/0.1/config/packages/money.yaml b/moneyphp/money-bundle/0.1/config/packages/money.yaml new file mode 100644 index 00000000..ab45e086 --- /dev/null +++ b/moneyphp/money-bundle/0.1/config/packages/money.yaml @@ -0,0 +1,3 @@ +services: + Money\Currencies: + alias: "moneyphp.iso.currencies" diff --git a/moneyphp/money-bundle/0.1/manifest.json b/moneyphp/money-bundle/0.1/manifest.json new file mode 100644 index 00000000..25468726 --- /dev/null +++ b/moneyphp/money-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Money\\MoneyBundle\\MoneyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 5e9f9755927cb7012cbde10a09881bee78b18638 Mon Sep 17 00:00:00 2001 From: Maxime V Date: Thu, 6 Feb 2020 14:05:35 +0100 Subject: [PATCH 155/394] Add recipes --- .../packages/knojector_steam_authentication.yaml | 6 ++++++ soljian/steam-authentication-bundle/1.0/manifest.json | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml create mode 100644 soljian/steam-authentication-bundle/1.0/manifest.json diff --git a/soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml b/soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml new file mode 100644 index 00000000..46e1d2e3 --- /dev/null +++ b/soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml @@ -0,0 +1,6 @@ +# https://github.com/knojector/SteamAuthenticationBundle for configuration documentation +soljian_steam_authentication: + api_key: "%env(STEAM_API_KEY)%" + login_route: '' + login_redirect: '' + user_class: '' diff --git a/soljian/steam-authentication-bundle/1.0/manifest.json b/soljian/steam-authentication-bundle/1.0/manifest.json new file mode 100644 index 00000000..573114e9 --- /dev/null +++ b/soljian/steam-authentication-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Soljian\\SteamAuthenticationBundle\\SoljianSteamAuthenticationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "STEAM_API_KEY": "" + } +} From 8dcdc5c1422ec751205c997754bfcdd43bf32184 Mon Sep 17 00:00:00 2001 From: Maxime V Date: Thu, 6 Feb 2020 14:23:52 +0100 Subject: [PATCH 156/394] fixes --- ...eam_authentication.yaml => soljian_steam_authentication.yaml} | 1 - 1 file changed, 1 deletion(-) rename soljian/steam-authentication-bundle/1.0/config/packages/{knojector_steam_authentication.yaml => soljian_steam_authentication.yaml} (58%) diff --git a/soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml similarity index 58% rename from soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml rename to soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml index 46e1d2e3..fe739547 100644 --- a/soljian/steam-authentication-bundle/1.0/config/packages/knojector_steam_authentication.yaml +++ b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml @@ -1,4 +1,3 @@ -# https://github.com/knojector/SteamAuthenticationBundle for configuration documentation soljian_steam_authentication: api_key: "%env(STEAM_API_KEY)%" login_route: '' From 15fbf574d0252b72b736c3961243b76d584ee01a Mon Sep 17 00:00:00 2001 From: Maxime V Date: Thu, 6 Feb 2020 14:42:58 +0100 Subject: [PATCH 157/394] d --- .../1.0/config/packages/soljian_steam_authentication.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml index fe739547..090a6aec 100644 --- a/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml +++ b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml @@ -2,4 +2,4 @@ soljian_steam_authentication: api_key: "%env(STEAM_API_KEY)%" login_route: '' login_redirect: '' - user_class: '' + user_class: '' \ No newline at end of file From 737ea8e3af8e4ff0b040d03a995a4fd4f00370bd Mon Sep 17 00:00:00 2001 From: Maxime V Date: Thu, 6 Feb 2020 14:43:33 +0100 Subject: [PATCH 158/394] d --- .../1.0/config/packages/soljian_steam_authentication.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml index 090a6aec..fe739547 100644 --- a/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml +++ b/soljian/steam-authentication-bundle/1.0/config/packages/soljian_steam_authentication.yaml @@ -2,4 +2,4 @@ soljian_steam_authentication: api_key: "%env(STEAM_API_KEY)%" login_route: '' login_redirect: '' - user_class: '' \ No newline at end of file + user_class: '' From caedeb22d10644b46aaeb239e01ba3ea1553f8ad Mon Sep 17 00:00:00 2001 From: Maxime V Date: Thu, 6 Feb 2020 14:58:05 +0100 Subject: [PATCH 159/394] gg --- soljian/steam-authentication-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soljian/steam-authentication-bundle/1.0/manifest.json b/soljian/steam-authentication-bundle/1.0/manifest.json index 573114e9..9d6e2b47 100644 --- a/soljian/steam-authentication-bundle/1.0/manifest.json +++ b/soljian/steam-authentication-bundle/1.0/manifest.json @@ -5,7 +5,7 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" }, - "env": { + "env": { "STEAM_API_KEY": "" } } From 6034ba0d7b010f9dc546be117a70bfd631831a74 Mon Sep 17 00:00:00 2001 From: Alexandre-T Date: Wed, 1 Jan 2020 19:50:30 +0100 Subject: [PATCH 160/394] Creating a manifest.json for alexandret/evc-bundle:1.0 --- .../1.0/config/packages/alexandre_evc.yaml | 4 ++++ alexandret/evc-bundle/1.0/manifest.json | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml create mode 100644 alexandret/evc-bundle/1.0/manifest.json diff --git a/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml b/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml new file mode 100644 index 00000000..b36cf618 --- /dev/null +++ b/alexandret/evc-bundle/1.0/config/packages/alexandre_evc.yaml @@ -0,0 +1,4 @@ +alexandre_evc: + api_id: '%env(EVC_API)%' + username: '%env(EVC_USERNAME)%' + password: '%env(EVC_PASSWORD)%' diff --git a/alexandret/evc-bundle/1.0/manifest.json b/alexandret/evc-bundle/1.0/manifest.json new file mode 100644 index 00000000..4389932b --- /dev/null +++ b/alexandret/evc-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Alexandre\\EvcBundle\\AlexandreEvcBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "EVC_API": "Enter the api version provided by evc.de support", + "EVC_USERNAME": "Enter your reseller account number", + "EVC_PASSWORD": "Enter your api password, not the password to connect on evc.de website" + } +} From 7fca26ec1a3498ec88e1963e6db3d78d7dfe0841 Mon Sep 17 00:00:00 2001 From: Baptiste Leduc Date: Fri, 7 Feb 2020 11:40:18 +0100 Subject: [PATCH 161/394] Add jane-php/json-schema recipe --- jane-php/json-schema/5.0/bin/jane-generate | 13 ++++++++++ .../json-schema/5.0/config/jane/config.php | 8 ++++++ .../json-schema/5.0/config/packages/jane.yaml | 25 +++++++++++++++++++ jane-php/json-schema/5.0/manifest.json | 6 +++++ jane-php/json-schema/5.0/post-install.txt | 12 +++++++++ 5 files changed, 64 insertions(+) create mode 100755 jane-php/json-schema/5.0/bin/jane-generate create mode 100644 jane-php/json-schema/5.0/config/jane/config.php create mode 100644 jane-php/json-schema/5.0/config/packages/jane.yaml create mode 100644 jane-php/json-schema/5.0/manifest.json create mode 100644 jane-php/json-schema/5.0/post-install.txt diff --git a/jane-php/json-schema/5.0/bin/jane-generate b/jane-php/json-schema/5.0/bin/jane-generate new file mode 100755 index 00000000..0b13fca6 --- /dev/null +++ b/jane-php/json-schema/5.0/bin/jane-generate @@ -0,0 +1,13 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/config.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/json-schema/5.0/config/jane/config.php b/jane-php/json-schema/5.0/config/jane/config.php new file mode 100644 index 00000000..83506b6c --- /dev/null +++ b/jane-php/json-schema/5.0/config/jane/config.php @@ -0,0 +1,8 @@ + __DIR__ . '/json-schema.json', + 'root-class' => 'MyModel', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/json-schema/5.0/config/packages/jane.yaml b/jane-php/json-schema/5.0/config/packages/jane.yaml new file mode 100644 index 00000000..59ff9b33 --- /dev/null +++ b/jane-php/json-schema/5.0/config/packages/jane.yaml @@ -0,0 +1,25 @@ +services: + jane.serializer.json_encode: + class: Symfony\Component\Serializer\Encoder\JsonEncode + arguments: + - { json_encode_options: 64 } # \JSON_UNESCAPED_SLASHES + + jane.serializer.json_decode: + class: Symfony\Component\Serializer\Encoder\JsonDecode + arguments: + - { json_decode_associative: false } + + jane.serializer.json_encoder: + class: Symfony\Component\Serializer\Encoder\JsonEncoder + arguments: + - '@jane.serializer.json_encode' + - '@jane.serializer.json_decode' + +# jane.serializer.object: +# class: MyApp\Library\Generated\Normalizer\JaneObjectNormalizer +# +# jane.serializer: +# class: Symfony\Component\Serializer\Serializer +# arguments: +# - ['@serializer.denormalizer.array', '@jane.serializer.object'] +# - ['@jane.serializer.json_encoder'] diff --git a/jane-php/json-schema/5.0/manifest.json b/jane-php/json-schema/5.0/manifest.json new file mode 100644 index 00000000..e2920638 --- /dev/null +++ b/jane-php/json-schema/5.0/manifest.json @@ -0,0 +1,6 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + } +} diff --git a/jane-php/json-schema/5.0/post-install.txt b/jane-php/json-schema/5.0/post-install.txt new file mode 100644 index 00000000..524d8f78 --- /dev/null +++ b/jane-php/json-schema/5.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * Finish package configuration: + 1. Configure config/jane/config.php with your specification details + 2. Run bin/jane-generate + 3. Add generated/ directory to your composer autoload definition (eg. "MyApp\\Library\\Generated\\": "generated/") + 4. Open config/packages/jane.yaml and replace MyApp\Library\Generated\Normalizer\JaneObjectNormalizer class with your generated normalizer. + 5. Then remove line comments + +Documentation: https://jane.readthedocs.io/en/latest/ From 1902457dbcdf30be994974c9836eefd017115be5 Mon Sep 17 00:00:00 2001 From: Roni Kumar Saha Date: Thu, 13 Feb 2020 08:27:51 +0600 Subject: [PATCH 162/394] Remove 2.0 version from recipe as 1.4 is forward compatible --- .../easy-audit/1.4/config/packages/xiidea_easy_audit.yaml | 2 +- .../easy-audit/2.0/config/packages/xiidea_easy_audit.yaml | 5 ----- xiidea/easy-audit/2.0/manifest.json | 8 -------- 3 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml delete mode 100644 xiidea/easy-audit/2.0/manifest.json diff --git a/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml index f1997e44..d8780cf6 100644 --- a/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml +++ b/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml @@ -1,5 +1,5 @@ # Read the documentation: http://xiidea.github.io/EasyAuditBundle/ xiidea_easy_audit: - entity_class: Xiidea\EasyAuditBundle\Entity\BaseAuditLog + audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog default_logger: false user_property : null # or username diff --git a/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml deleted file mode 100644 index d8780cf6..00000000 --- a/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml +++ /dev/null @@ -1,5 +0,0 @@ -# Read the documentation: http://xiidea.github.io/EasyAuditBundle/ -xiidea_easy_audit: - audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog - default_logger: false - user_property : null # or username diff --git a/xiidea/easy-audit/2.0/manifest.json b/xiidea/easy-audit/2.0/manifest.json deleted file mode 100644 index db79aa57..00000000 --- a/xiidea/easy-audit/2.0/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "Xiidea\\EasyAuditBundle\\XiideaEasyAuditBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} From 9a4b7e6021012f7cf01555caba1c5276975458be Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Fri, 14 Feb 2020 09:28:12 +0100 Subject: [PATCH 163/394] Commented sections removed The commented sections have been removed. A link to the documentation page has been added --- .../3.0/config/packages/webauthn.yaml | 34 ++----------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml index 2a912843..e2ab0807 100644 --- a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml +++ b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml @@ -1,43 +1,13 @@ +# Please see the following page for more information: https://webauthn-doc.spomky-labs.com/the-webauthn-server/the-symfony-way#configuration + webauthn: -# logger: null credential_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialSourceRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! user_repository: 'Webauthn\Bundle\Repository\DummyPublicKeyCredentialUserEntityRepository' # CREATE YOUR REPOSITORY AND CHANGE THIS! - token_binding_support_handler: 'Webauthn\TokenBinding\IgnoreTokenBindingHandler' creation_profiles: default: rp: name: '%env(RELAYING_PARTY_NAME)%' # CHANGE THIS! id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null -# icon: null # -# challenge_length: 32 -# timeout: 60000 -# authenticator_selection_criteria: -# attachment_mode: !php/const Webauthn\AuthenticatorSelectionCriteria::AUTHENTICATOR_ATTACHMENT_NO_PREFERENCE -# require_resident_key: false -# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED -# extensions: -# loc: true -# public_key_credential_parameters: # You should not change this list -# - !php/const Cose\Algorithms::COSE_ALGORITHM_EdDSA #Order is important. Preferred algorithms go first -# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES256K -# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES384 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_ES512 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS256 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS384 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_RS512 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS256 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS384 -# - !php/const Cose\Algorithms::COSE_ALGORITHM_PS512 -# attestation_conveyance: !php/const Webauthn\PublicKeyCredentialCreationOptions::ATTESTATION_CONVEYANCE_PREFERENCE_NONE request_profiles: default: rp_id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null -# challenge_length: 32 -# timeout: 60000 -# user_verification: !php/const Webauthn\AuthenticatorSelectionCriteria::USER_VERIFICATION_REQUIREMENT_PREFERRED -# extensions: -# loc: true -# metadata_service: -# enabled: false -# repository: 'App\Repository\MetadataStatementRepository' From 86cd7f640fe909cd8348263321651a344b86b5e1 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Fri, 14 Feb 2020 09:29:22 +0100 Subject: [PATCH 164/394] Update webauthn.yaml --- .../webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml index e2ab0807..741c5d68 100644 --- a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml +++ b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml @@ -6,7 +6,7 @@ webauthn: creation_profiles: default: rp: - name: '%env(RELAYING_PARTY_NAME)%' # CHANGE THIS! + name: '%env(RELAYING_PARTY_NAME)%' # Please adapt the env file with the correct relaying party ID or set null id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null request_profiles: default: From 8d0cb9303648584503275d2a55471c774ca49626 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Fri, 14 Feb 2020 17:48:46 +0100 Subject: [PATCH 165/394] Add elao/enum recipe --- elao/enum/1.7/config/packages/elao_enum.yaml | 5 +++++ elao/enum/1.7/manifest.json | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 elao/enum/1.7/config/packages/elao_enum.yaml create mode 100644 elao/enum/1.7/manifest.json diff --git a/elao/enum/1.7/config/packages/elao_enum.yaml b/elao/enum/1.7/config/packages/elao_enum.yaml new file mode 100644 index 00000000..4ddd06f4 --- /dev/null +++ b/elao/enum/1.7/config/packages/elao_enum.yaml @@ -0,0 +1,5 @@ +elao_enum: + # Provide the enum classes for which you want to automatically generate & register Doctrine DBAL Types: + # https://github.com/Elao/PhpEnums#doctrine + doctrine: + types: {} diff --git a/elao/enum/1.7/manifest.json b/elao/enum/1.7/manifest.json new file mode 100644 index 00000000..ad6e4e25 --- /dev/null +++ b/elao/enum/1.7/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Elao\\Enum\\Bridge\\Symfony\\Bundle\\ElaoEnumBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4c07c5bebe8cd2adf0be7912666683708108d11c Mon Sep 17 00:00:00 2001 From: Nikita Safonov Date: Sun, 16 Feb 2020 16:30:52 +0300 Subject: [PATCH 166/394] add ns3777k prometheus recipe --- .../1.0/config/packages/ns3777k_prometheus.yaml | 7 +++++++ .../1.0/config/packages/test/ns3777k_prometheus.yaml | 2 ++ ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml | 2 ++ ns3777k/prometheus-bundle/1.0/manifest.json | 8 ++++++++ 4 files changed, 19 insertions(+) create mode 100644 ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml create mode 100644 ns3777k/prometheus-bundle/1.0/config/packages/test/ns3777k_prometheus.yaml create mode 100644 ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml create mode 100644 ns3777k/prometheus-bundle/1.0/manifest.json diff --git a/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml b/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml new file mode 100644 index 00000000..e6b30933 --- /dev/null +++ b/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml @@ -0,0 +1,7 @@ +ns3777k_prometheus: + namespace: app + adapter: apcu + + listener: + enabled: true + ignored_routes: [metrics, _wdt] diff --git a/ns3777k/prometheus-bundle/1.0/config/packages/test/ns3777k_prometheus.yaml b/ns3777k/prometheus-bundle/1.0/config/packages/test/ns3777k_prometheus.yaml new file mode 100644 index 00000000..c1975754 --- /dev/null +++ b/ns3777k/prometheus-bundle/1.0/config/packages/test/ns3777k_prometheus.yaml @@ -0,0 +1,2 @@ +ns3777k_prometheus: + adapter: in_memory diff --git a/ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml b/ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml new file mode 100644 index 00000000..af1e1845 --- /dev/null +++ b/ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml @@ -0,0 +1,2 @@ +metrics: + resource: '@Ns3777kPrometheusBundle/Resources/config/routing.xml' diff --git a/ns3777k/prometheus-bundle/1.0/manifest.json b/ns3777k/prometheus-bundle/1.0/manifest.json new file mode 100644 index 00000000..b683f1a1 --- /dev/null +++ b/ns3777k/prometheus-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Ns3777k\\PrometheusBundle\\Ns3777kPrometheusBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 1f50d15243b2fb57000f4845d2e1e065dcc026ac Mon Sep 17 00:00:00 2001 From: Jorrit Schippers Date: Fri, 21 Feb 2020 17:03:52 +0100 Subject: [PATCH 167/394] Update documentation url in fos_elastica.yaml --- .../elastica-bundle/5.0/config/packages/fos_elastica.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml index 54f7abd3..a93adb2f 100644 --- a/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml +++ b/friendsofsymfony/elastica-bundle/5.0/config/packages/fos_elastica.yaml @@ -1,4 +1,4 @@ -# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/Resources/doc/setup.md +# Read the documentation: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/setup.md fos_elastica: clients: default: { url: '%env(ELASTICSEARCH_URL)%' } From de1abe510c86970b3a338b2fba6794cdae317e2b Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sun, 23 Feb 2020 12:58:26 +0100 Subject: [PATCH 168/394] Adding recipe for async-aws/symfony-bundle --- .../0.1/config/packages/async_aws.yaml | 9 +++++++++ async-aws/async-aws-bundle/0.1/manifest.json | 12 ++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml create mode 100644 async-aws/async-aws-bundle/0.1/manifest.json diff --git a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml new file mode 100644 index 00000000..f4f21dbf --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml @@ -0,0 +1,9 @@ +# Read documentation at https://github.com/async-aws/symfony-bundle +async_aws: + config: + region: eu-central-1 + accessKeyId: '%env(AWS_KEY)%' + accessKeySecret: '%env(AWS_SECRET)%' + + # All installed clients are automatically autowrired. Use this section to customize clients + clients: diff --git a/async-aws/async-aws-bundle/0.1/manifest.json b/async-aws/async-aws-bundle/0.1/manifest.json new file mode 100644 index 00000000..f0371b71 --- /dev/null +++ b/async-aws/async-aws-bundle/0.1/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "AWS_KEY": "your-aws-key", + "AWS_SECRET": "your-aws-secret" + } +} From ef17f168280b286fdaf3be1692e6f43c0d582634 Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Tue, 25 Feb 2020 15:43:53 +0100 Subject: [PATCH 169/394] Add manifest for monsieurbiz/sylius-admin-better-login-plugin 1.0 --- .../sylius-admin-better-login-plugin/1.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json diff --git a/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json new file mode 100644 index 00000000..3a8520b2 --- /dev/null +++ b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusAdminBetterLoginPlugin\\MonsieurBizSyliusAdminBetterLoginPlugin": ["all"] + }, + "copy-from-package": { + "src/Resources/views/SyliusUiBundle/Security/_login.html.twig": "templates/SyliusUiBundle/Security/_login.html.twig" + } +} From 9df6e987be03679170b475416c83d6d5342a2a54 Mon Sep 17 00:00:00 2001 From: Yevgeniy Dyachenko Date: Wed, 26 Feb 2020 14:59:17 +0200 Subject: [PATCH 170/394] Fix symfony-bundles kafka-bundle config. Removed topics option --- .../kafka-bundle/1.0/config/packages/sb_kafka.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml b/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml index 3f80d77d..164b6fcc 100644 --- a/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml +++ b/symfony-bundles/kafka-bundle/1.0/config/packages/sb_kafka.yaml @@ -11,7 +11,3 @@ sb_kafka: group.id: 'main_group' log.connection.close: 'false' metadata.broker.list: '%env(resolve:KAFKA_BROKERS)%' - - topics: - configuration: - auto.offset.reset: smallest From 3b37930a0f80186af17d6da8e920499925089c2a Mon Sep 17 00:00:00 2001 From: Tobias Feijten Date: Wed, 19 Feb 2020 09:55:30 +0100 Subject: [PATCH 171/394] Add drenso/symfony-shared recipe --- drenso/symfony-shared/0.8/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 drenso/symfony-shared/0.8/manifest.json diff --git a/drenso/symfony-shared/0.8/manifest.json b/drenso/symfony-shared/0.8/manifest.json new file mode 100644 index 00000000..af37f2a8 --- /dev/null +++ b/drenso/symfony-shared/0.8/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Drenso\\Shared\\DrensoSharedBundle": ["all"] + }, + "copy-from-package": { + "config/": "%CONFIG_DIR%/" + } +} From 1f58df13b7265e10fa1a83a565adf1a3159a37c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Fr=C3=A9mont?= Date: Thu, 27 Feb 2020 09:58:11 +0100 Subject: [PATCH 172/394] Recipe for mobizel/symfony-capistrano package --- mobizel/symfony-capistrano/0.2/manifest.json | 7 +++++++ mobizel/symfony-capistrano/0.2/post-install.txt | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 mobizel/symfony-capistrano/0.2/manifest.json create mode 100644 mobizel/symfony-capistrano/0.2/post-install.txt diff --git a/mobizel/symfony-capistrano/0.2/manifest.json b/mobizel/symfony-capistrano/0.2/manifest.json new file mode 100644 index 00000000..53bcbbbb --- /dev/null +++ b/mobizel/symfony-capistrano/0.2/manifest.json @@ -0,0 +1,7 @@ +{ + "copy-from-package": { + "Capfile": "Capfile", + "Gemfile": "Gemfile", + "etc/": "etc/" + } +} diff --git a/mobizel/symfony-capistrano/0.2/post-install.txt b/mobizel/symfony-capistrano/0.2/post-install.txt new file mode 100644 index 00000000..4aa003f4 --- /dev/null +++ b/mobizel/symfony-capistrano/0.2/post-install.txt @@ -0,0 +1,7 @@ + + What's next? + + +Please update etc/capistrano/deploy.rb, etc/capistrano/deploy/staging.rb and etc/capistrano/deploy/production.rb to accurately reflect your needs. + +* Read the capistrano symfony documentation at https://github.com/capistrano/symfony From d69d601948565880990f64b901337c021e559776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petar=20Obradovi=C4=87?= Date: Thu, 27 Feb 2020 15:25:04 +0100 Subject: [PATCH 173/394] Add 3.0 recipe for "trikoder/oauth2-bundle" --- trikoder/oauth2-bundle/3.0/config | 1 + trikoder/oauth2-bundle/3.0/manifest.json | 1 + trikoder/oauth2-bundle/3.0/post-install.txt | 22 +++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 120000 trikoder/oauth2-bundle/3.0/config create mode 120000 trikoder/oauth2-bundle/3.0/manifest.json create mode 100644 trikoder/oauth2-bundle/3.0/post-install.txt diff --git a/trikoder/oauth2-bundle/3.0/config b/trikoder/oauth2-bundle/3.0/config new file mode 120000 index 00000000..32dff909 --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/config @@ -0,0 +1 @@ +../2.0/config \ No newline at end of file diff --git a/trikoder/oauth2-bundle/3.0/manifest.json b/trikoder/oauth2-bundle/3.0/manifest.json new file mode 120000 index 00000000..46456de9 --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/manifest.json @@ -0,0 +1 @@ +../2.0/manifest.json \ No newline at end of file diff --git a/trikoder/oauth2-bundle/3.0/post-install.txt b/trikoder/oauth2-bundle/3.0/post-install.txt new file mode 100644 index 00000000..6c8b9a6c --- /dev/null +++ b/trikoder/oauth2-bundle/3.0/post-install.txt @@ -0,0 +1,22 @@ + + OAuth2 Configuration + + + 1. Provide a key pair + i) Generate a private/public key pair (preferably with a password): https://oauth2.thephpleague.com/installation/#generating-public-and-private-keys + ii) Configure the private_key and public_key with the respective key locations + iii) (Optional) Set the private_key_passphrase to the private key password set in the previous step + + 2. Configure the OAuth2 encryption key + i) Add the OAUTH2_ENCRYPTION_KEY env variable in .env.local (don't commit your production secrets): https://oauth2.thephpleague.com/installation/#string-password + ii) Configure the encryption_key with a secure encryption key: https://oauth2.thephpleague.com/installation/#string-password + + 3. Update the database + i) Update the database so bundle entities can be persisted using Doctrine: bin/console doctrine:schema:update --force + + 4. Install a PSR 7/17 implementation + i) Require a PSR 7/17 implementation. We recommend that you use nyholm/psr7. + ii) (Optional) Choose a different implementation package: https://github.com/trikoder/oauth2-bundle/blob/v3.x/docs/psr-implementation-switching.md + + 5. Read the docs + i) Read the documentation at https://github.com/trikoder/oauth2-bundle/blob/v3.x/docs/basic-setup.md From 6a9b9ac0233d0721bf1caabff7890f261877c0c2 Mon Sep 17 00:00:00 2001 From: msalsas Date: Sat, 29 Feb 2020 13:17:35 +0100 Subject: [PATCH 174/394] Add Add MsalsasGdprConsentBannerBundle recipe --- .../1.0/config/packages/msalsas_gdpr_consent_banner.yaml | 7 +++++++ .../1.0/config/routes/msalsas_gdpr_consent_banner.yaml | 4 ++++ msalsas/gdpr-consent-banner-bundle/1.0/manifest.json | 8 ++++++++ 3 files changed, 19 insertions(+) create mode 100644 msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml create mode 100644 msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml create mode 100644 msalsas/gdpr-consent-banner-bundle/1.0/manifest.json diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml new file mode 100644 index 00000000..d7c0ad9f --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml @@ -0,0 +1,7 @@ +msalsas_gdpr_consent_banner: + has_translations: true + css: default + fade_time: 2 + text_message: "" + accept_message: "" + time_to_expire: 30 days diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml b/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml new file mode 100644 index 00000000..3ed25e22 --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/config/routes/msalsas_gdpr_consent_banner.yaml @@ -0,0 +1,4 @@ +accept_gdpr_consent_banner: + path: /accept-gdpr-consent-banner + controller: Msalsas\GdprConsentBannerBundle\Controller\MsalsasGdprConsentBannerController:acceptGdprConsentBanner + methods: POST diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json b/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json new file mode 100644 index 00000000..08d17bf7 --- /dev/null +++ b/msalsas/gdpr-consent-banner-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Msalsas\\GdprConsentBannerBundle\\MsalsasGdprConsentBannerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From c5e59097a26b5b30c5aa97546668fa07bda92e91 Mon Sep 17 00:00:00 2001 From: Aleksandr Klimenkov Date: Sun, 8 Mar 2020 23:16:34 +0300 Subject: [PATCH 175/394] recipie for anyx/login-gate-bundle --- .../login-gate-bundle/1.0/config/packages/login_gate.yaml | 7 +++++++ anyx/login-gate-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml create mode 100644 anyx/login-gate-bundle/1.0/manifest.json diff --git a/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml b/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml new file mode 100644 index 00000000..b19a34e3 --- /dev/null +++ b/anyx/login-gate-bundle/1.0/config/packages/login_gate.yaml @@ -0,0 +1,7 @@ +login_gate: + storages: ['session'] # Attempts storage engine. Available engines: ['orm', 'session', 'mongodb'] + options: + max_count_attempts: 3 + timeout: 600 # Ban period (in seconds ... 600 = 10 minutes) + watch_period: 3600 + diff --git a/anyx/login-gate-bundle/1.0/manifest.json b/anyx/login-gate-bundle/1.0/manifest.json new file mode 100644 index 00000000..29733aaa --- /dev/null +++ b/anyx/login-gate-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Anyx\\LoginGateBundle\\LoginGateBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 35370d747a15e6682526c876ef015474eb530820 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmeier Date: Sun, 22 Dec 2019 03:27:35 +0100 Subject: [PATCH 176/394] Add recipe for inwx-api-bundle >= v1.0 --- .../1.0/config/packages/inwx_api.yaml | 8 ++++++++ sebtm/inwx-api-bundle/1.0/manifest.json | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml create mode 100644 sebtm/inwx-api-bundle/1.0/manifest.json diff --git a/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml b/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml new file mode 100644 index 00000000..2f411849 --- /dev/null +++ b/sebtm/inwx-api-bundle/1.0/config/packages/inwx_api.yaml @@ -0,0 +1,8 @@ +# Read the documentation: https://github.com/SebTM/inwx-api-bundle +inwx_api: + debug: '%kernel.debug%' + environment: development + json: true + language: en + username: '%env(resolve:INWX_USERNAME)%' + password: '%env(resolve:INWX_PASSWORD)%' diff --git a/sebtm/inwx-api-bundle/1.0/manifest.json b/sebtm/inwx-api-bundle/1.0/manifest.json new file mode 100644 index 00000000..e81d9ecc --- /dev/null +++ b/sebtm/inwx-api-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "SebTM\\INWX\\InwxApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "INWX_USERNAME": "", + "INWX_PASSWORD": "" + } +} From 0ae0a895276fbfc7b2164570db8707f2149a6bed Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Wed, 26 Feb 2020 11:00:19 +0100 Subject: [PATCH 177/394] Add recipe for payum/payum-bundle v2.4 --- payum/payum-bundle/2.4/config/payum.yaml | 17 +++++++++++++++++ payum/payum-bundle/2.4/manifest.json | 8 ++++++++ 2 files changed, 25 insertions(+) create mode 100644 payum/payum-bundle/2.4/config/payum.yaml create mode 100644 payum/payum-bundle/2.4/manifest.json diff --git a/payum/payum-bundle/2.4/config/payum.yaml b/payum/payum-bundle/2.4/config/payum.yaml new file mode 100644 index 00000000..528976e2 --- /dev/null +++ b/payum/payum-bundle/2.4/config/payum.yaml @@ -0,0 +1,17 @@ +payum: + storages: + Payum\Core\Model\Payment: + filesystem: + storage_dir: '%kernel.root_dir%/Resources/payments' + id_property: number + + security: + token_storage: + Payum\Core\Model\Token: + filesystem: + storage_dir: '%kernel.root_dir%/Resources/gateways' + id_property: hash + + gateways: + offline: + factory: offline diff --git a/payum/payum-bundle/2.4/manifest.json b/payum/payum-bundle/2.4/manifest.json new file mode 100644 index 00000000..69d6a116 --- /dev/null +++ b/payum/payum-bundle/2.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Payum\\Bundle\\PayumBundle\\PayumBundle": ["all"] + }, + "copy-from-recipe": { + "config/payum.yaml": "%CONFIG_DIR%/packages/payum.yaml" + } +} From 58247fb35a6ef1228648667df45c56fbcb588dab Mon Sep 17 00:00:00 2001 From: Jules Pietri Date: Sat, 14 Dec 2019 16:14:26 +0100 Subject: [PATCH 178/394] Added config for ExerciseHTMLPurifierBundle 3.0 --- .../packages/exercise_html_purifier.yaml | 21 +++++++++++++++++++ .../htmlpurifier-bundle/3.0/manifest.json | 1 + 2 files changed, 22 insertions(+) create mode 100644 exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml create mode 120000 exercise/htmlpurifier-bundle/3.0/manifest.json diff --git a/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml b/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml new file mode 100644 index 00000000..4c787a58 --- /dev/null +++ b/exercise/htmlpurifier-bundle/3.0/config/packages/exercise_html_purifier.yaml @@ -0,0 +1,21 @@ +exercise_html_purifier: + default_cache_serializer_path: '%kernel.cache_dir%/htmlpurifier' + + html_profiles: + default: + config: + # the charset used by the original contents + Core.Encoding: 'UTF-8' + # full configuration reference: http://htmlpurifier.org/live/configdoc/plain.html + +# Read the https://github.com/Exercise/HTMLPurifierBundle/blob/master/README.md file +# to know how to whitelist elements + +# # whitelist attributes by tag +# attributes: [] + +# # whitelist elements by name +# elements: [] + +# # list of elements that cannot have attributes +# blank_elements: [] diff --git a/exercise/htmlpurifier-bundle/3.0/manifest.json b/exercise/htmlpurifier-bundle/3.0/manifest.json new file mode 120000 index 00000000..4650d613 --- /dev/null +++ b/exercise/htmlpurifier-bundle/3.0/manifest.json @@ -0,0 +1 @@ +../0.2/manifest.json \ No newline at end of file From 67d069c6d57c7f5abbbbea6ea7a71448aa9836e0 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 11 Mar 2020 18:14:23 +0100 Subject: [PATCH 179/394] Added a new recipe for FastEntityBundle 2.x --- .../2.0/config/packages/fast_entity.yaml | 19 +++++++++++++++++++ .../fast-entity-bundle/2.0/manifest.json | 9 +++++++++ 2 files changed, 28 insertions(+) create mode 100644 jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml create mode 100644 jonathankablan/fast-entity-bundle/2.0/manifest.json diff --git a/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml new file mode 100644 index 00000000..667409e1 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml @@ -0,0 +1,19 @@ +#fast_entity: +# tables: +# - { name: 'admin' } +# - { name: 'formation' } +# schema: +# # User +# - { entity: 'admin', property: 'username', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'password', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'email', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'active', type: 'boolean', nullable: true } +# - { entity: 'admin', property: 'created', type: 'datetime', nullable: true } +# - { entity: 'admin', property: 'updated', type: 'datetime', nullable: true } +# # Conference +# - { entity: 'formation', property: 'location', type: 'string', length: 255, nullable: true } +# - { entity: 'formation', property: 'price', type: 'integer', length: 11, nullable: true } +# - { entity: 'formation', property: 'created', type: 'datetime', nullable: true } +# - { entity: 'formation', property: 'updated', type: 'datetime', nullable: true } +# relations: +# - { entityTo: 'admin', entityFrom: 'formation', relation: 'OneToOne' } diff --git a/jonathankablan/fast-entity-bundle/2.0/manifest.json b/jonathankablan/fast-entity-bundle/2.0/manifest.json new file mode 100644 index 00000000..2d6c3f36 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Jonathankablan\\Bundle\\FastEntityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} From 2acd8313204d38a93251a78fc3417cbc44ceb6dd Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 11 Mar 2020 18:23:04 +0100 Subject: [PATCH 180/394] Edit Manifest.json --- jonathankablan/.DS_Store | Bin 0 -> 6148 bytes jonathankablan/fast-entity-bundle/.DS_Store | Bin 0 -> 6148 bytes .../fast-entity-bundle/2.0/manifest.json | 3 +-- 3 files changed, 1 insertion(+), 2 deletions(-) create mode 100644 jonathankablan/.DS_Store create mode 100644 jonathankablan/fast-entity-bundle/.DS_Store diff --git a/jonathankablan/.DS_Store b/jonathankablan/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3f8add3306f1caaca214cc7e4711aea4c33a7817 GIT binary patch literal 6148 zcmeHKK}*~~6n>+tjkcwW2zs1LZ(GO;#d;9Zbv<|!BK4r6Nt3#PY-ZVHyV`XnXa9lT z{0II9Z~g-RPT!k(7DWq-g2*xt-h6Ln-Z#m7VP-M_AR4`>4p0RE2c57oi^UU0{p62q zf?K8$g&yMz#E?M&3A#0_fK}kFD?n>^4t_xZIj-6J>-QLIA@p!PN034s_VZ4dsu1&U z!cLmxh3npmiOI^;^gD;_qqFC?RNpUxqL(*0#afsoEVwoLV21*H+CYi{>1iUEN%M zxc)vmH+nX=)4Kn@l3shHdH(jhS*o%_%)ir&xYou}0sh3!`>~vzos?C;D)15oXn&CC zgdSsQP;VVr=qmtX1)H^DOm_+5NJfvbG>AQD!cY+nRqz!<7&^8~&hr>cgN6=*FCT)R zEck{Z^wV*CsnbDt25o5-unIg>VA52pbpGQn?f>ro4@tIW6|f47l>(yD^qUQw5}&P) xCP!zjL_a_$qrB3freMLxu@2}cUPRZ1eUbu1kFhj}Eok;fK+9kYtH7%&@E1zti?ILz literal 0 HcmV?d00001 diff --git a/jonathankablan/fast-entity-bundle/.DS_Store b/jonathankablan/fast-entity-bundle/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..32787bb60f1f824420e39d3ac00539090ab0e59d GIT binary patch literal 6148 zcmeHK%}OId5bjQ*PH>maLC|Ag#7mG#U~xSxj4>X(3A5-yMQ3(`8JJ9mWMa@5nb**p zuj0)o5PX`g>aJ)cy2m9fRnYx)*H8a^({xV>A!K6^)r6=BAsi@(g)&qh2->mCNP#qq zfD*^(cf&-7(0dBIGv2J2M+WfQ6-8Za3O5{1f4?N|XRiA!3&qmH;*x{%)j9Rsdgy0C zHt08k-ZAzLf~*}<`QO(`@UR7IeeLOBZtLwF&`{$jj>(R~l_RexD;rJQ(MmT|c zXwdeOi<)cg0ULL+Y?o3;wzgWBN=}{GgP3F7wdugK63(!nf zhgKG5fEi#0=70gZmYn4|SPL(K8DIwHivheJ6cj{{Ft=!~4ya5D09XRG5olvBfia5E zBg`#=1w`6VKpQG4#gH}}^osmE!rY<_7m|_>Ni$2zP^6h1##hE&NY5hI%m6d+o`It6 zR`C6Ybm+7E|9uemm;q+szhXd^ntrnZTcWphW^?$~Dk$erP|z>8_! Date: Thu, 12 Mar 2020 02:30:10 +0300 Subject: [PATCH 181/394] rename metrics route file and remove enabled from listener in ns3777k prometheus recipe --- .../1.0/config/packages/ns3777k_prometheus.yaml | 1 - .../routes/{metrics.yaml => ns3777k_prometheus_metrics.yaml} | 0 2 files changed, 1 deletion(-) rename ns3777k/prometheus-bundle/1.0/config/routes/{metrics.yaml => ns3777k_prometheus_metrics.yaml} (100%) diff --git a/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml b/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml index e6b30933..e17c7a38 100644 --- a/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml +++ b/ns3777k/prometheus-bundle/1.0/config/packages/ns3777k_prometheus.yaml @@ -3,5 +3,4 @@ ns3777k_prometheus: adapter: apcu listener: - enabled: true ignored_routes: [metrics, _wdt] diff --git a/ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml b/ns3777k/prometheus-bundle/1.0/config/routes/ns3777k_prometheus_metrics.yaml similarity index 100% rename from ns3777k/prometheus-bundle/1.0/config/routes/metrics.yaml rename to ns3777k/prometheus-bundle/1.0/config/routes/ns3777k_prometheus_metrics.yaml From 0fcc357d16492fbc8f8ec56e52963499a7970908 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 12 Mar 2020 01:01:01 +0100 Subject: [PATCH 182/394] Remove .DS_Store - fix packages yaml --- jonathankablan/.DS_Store | Bin 6148 -> 0 bytes jonathankablan/fast-entity-bundle/.DS_Store | Bin 6148 -> 0 bytes .../2.0/config/packages/fast_entity.yaml | 38 +++++++++--------- 3 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 jonathankablan/.DS_Store delete mode 100644 jonathankablan/fast-entity-bundle/.DS_Store diff --git a/jonathankablan/.DS_Store b/jonathankablan/.DS_Store deleted file mode 100644 index 3f8add3306f1caaca214cc7e4711aea4c33a7817..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKK}*~~6n>+tjkcwW2zs1LZ(GO;#d;9Zbv<|!BK4r6Nt3#PY-ZVHyV`XnXa9lT z{0II9Z~g-RPT!k(7DWq-g2*xt-h6Ln-Z#m7VP-M_AR4`>4p0RE2c57oi^UU0{p62q zf?K8$g&yMz#E?M&3A#0_fK}kFD?n>^4t_xZIj-6J>-QLIA@p!PN034s_VZ4dsu1&U z!cLmxh3npmiOI^;^gD;_qqFC?RNpUxqL(*0#afsoEVwoLV21*H+CYi{>1iUEN%M zxc)vmH+nX=)4Kn@l3shHdH(jhS*o%_%)ir&xYou}0sh3!`>~vzos?C;D)15oXn&CC zgdSsQP;VVr=qmtX1)H^DOm_+5NJfvbG>AQD!cY+nRqz!<7&^8~&hr>cgN6=*FCT)R zEck{Z^wV*CsnbDt25o5-unIg>VA52pbpGQn?f>ro4@tIW6|f47l>(yD^qUQw5}&P) xCP!zjL_a_$qrB3freMLxu@2}cUPRZ1eUbu1kFhj}Eok;fK+9kYtH7%&@E1zti?ILz diff --git a/jonathankablan/fast-entity-bundle/.DS_Store b/jonathankablan/fast-entity-bundle/.DS_Store deleted file mode 100644 index 32787bb60f1f824420e39d3ac00539090ab0e59d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}OId5bjQ*PH>maLC|Ag#7mG#U~xSxj4>X(3A5-yMQ3(`8JJ9mWMa@5nb**p zuj0)o5PX`g>aJ)cy2m9fRnYx)*H8a^({xV>A!K6^)r6=BAsi@(g)&qh2->mCNP#qq zfD*^(cf&-7(0dBIGv2J2M+WfQ6-8Za3O5{1f4?N|XRiA!3&qmH;*x{%)j9Rsdgy0C zHt08k-ZAzLf~*}<`QO(`@UR7IeeLOBZtLwF&`{$jj>(R~l_RexD;rJQ(MmT|c zXwdeOi<)cg0ULL+Y?o3;wzgWBN=}{GgP3F7wdugK63(!nf zhgKG5fEi#0=70gZmYn4|SPL(K8DIwHivheJ6cj{{Ft=!~4ya5D09XRG5olvBfia5E zBg`#=1w`6VKpQG4#gH}}^osmE!rY<_7m|_>Ni$2zP^6h1##hE&NY5hI%m6d+o`It6 zR`C6Ybm+7E|9uemm;q+szhXd^ntrnZTcWphW^?$~Dk$erP|z>8_! Date: Thu, 12 Mar 2020 07:10:04 +0600 Subject: [PATCH 183/394] Revert "Remove 2.0 version from recipe as 1.4 is forward compatible" This reverts commit 1902457d --- .../easy-audit/1.4/config/packages/xiidea_easy_audit.yaml | 2 +- .../easy-audit/2.0/config/packages/xiidea_easy_audit.yaml | 5 +++++ xiidea/easy-audit/2.0/manifest.json | 8 ++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml create mode 100644 xiidea/easy-audit/2.0/manifest.json diff --git a/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml index d8780cf6..f1997e44 100644 --- a/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml +++ b/xiidea/easy-audit/1.4/config/packages/xiidea_easy_audit.yaml @@ -1,5 +1,5 @@ # Read the documentation: http://xiidea.github.io/EasyAuditBundle/ xiidea_easy_audit: - audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog + entity_class: Xiidea\EasyAuditBundle\Entity\BaseAuditLog default_logger: false user_property : null # or username diff --git a/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml new file mode 100644 index 00000000..d8780cf6 --- /dev/null +++ b/xiidea/easy-audit/2.0/config/packages/xiidea_easy_audit.yaml @@ -0,0 +1,5 @@ +# Read the documentation: http://xiidea.github.io/EasyAuditBundle/ +xiidea_easy_audit: + audit_log_class: Xiidea\EasyAuditBundle\Model\BaseAuditLog + default_logger: false + user_property : null # or username diff --git a/xiidea/easy-audit/2.0/manifest.json b/xiidea/easy-audit/2.0/manifest.json new file mode 100644 index 00000000..db79aa57 --- /dev/null +++ b/xiidea/easy-audit/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Xiidea\\EasyAuditBundle\\XiideaEasyAuditBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From d0202ec41eabd876906f4efe9b225e5ee3acd386 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 12 Mar 2020 08:32:42 +0100 Subject: [PATCH 184/394] Fixed typo --- async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml index f4f21dbf..0a5e7a4a 100644 --- a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml +++ b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml @@ -5,5 +5,5 @@ async_aws: accessKeyId: '%env(AWS_KEY)%' accessKeySecret: '%env(AWS_SECRET)%' - # All installed clients are automatically autowrired. Use this section to customize clients + # All installed clients are automatically autowired. Use this section to customize clients clients: From 32248c8750830b012e8b7dac6c23095437ea1c95 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Sat, 14 Mar 2020 14:20:29 +0100 Subject: [PATCH 185/394] Update post-install.txt Minor improvements, some mentioned at https://github.com/Codeception/Codeception/issues/5438 --- codeception/codeception/2.3/post-install.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/codeception/codeception/2.3/post-install.txt b/codeception/codeception/2.3/post-install.txt index d7e828fb..7f76b8fe 100644 --- a/codeception/codeception/2.3/post-install.txt +++ b/codeception/codeception/2.3/post-install.txt @@ -1,15 +1,15 @@ Bootstrapping Codeception -File codeception.yaml created <- global configuration +File codeception.yml created <- global configuration tests/unit created <- unit tests -tests/unit.suite.yaml written <- unit tests suite configuration +tests/unit.suite.yml written <- unit tests suite configuration tests/functional created <- functional tests -tests/functional.suite.yaml written <- functional tests suite configuration +tests/functional.suite.yml written <- functional tests suite configuration tests/acceptance created <- acceptance tests -tests/acceptance.suite.yaml written <- acceptance tests suite configuration +tests/acceptance.suite.yml written <- acceptance tests suite configuration Codeception is installed for acceptance, functional, and unit testing Next steps: -1. Edit tests/acceptance.suite.yaml to set url of your application. Change PhpBrowser to WebDriver to enable browser testing -2. Edit tests/functional.suite.yaml to enable a Doctrine module if needs. -3. Create your first acceptance tests using vendor/bin/codecept g:cest acceptance First -4. Write first test in tests/acceptance/FirstCest.php +1. Edit tests/acceptance.suite.yml to set the url of your application. Change PhpBrowser to WebDriver to enable browser testing. +2. Edit tests/functional.suite.yml to enable Doctrine module if needed. +3. Create your first acceptance test using vendor/bin/codecept g:cest acceptance First +4. Write your first test in tests/acceptance/FirstCest.php 5. Run tests using: vendor/bin/codecept run From d4b7248feb006d06c2c0d74d4f247f83649dedea Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Thu, 6 Feb 2020 18:46:57 +0300 Subject: [PATCH 186/394] configure gpslab/geoip2:~2.0 install empty config use environment variables commit expected config comment expected config --- .../geoip2/2.0/config/packages/gpslab_geoip.yaml | 8 ++++++++ gpslab/geoip2/2.0/manifest.json | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml create mode 100644 gpslab/geoip2/2.0/manifest.json diff --git a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml new file mode 100644 index 00000000..0061476b --- /dev/null +++ b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml @@ -0,0 +1,8 @@ +# Read the README file for more detailed configuration information +# https://github.com/gpslab/geoip2 +#gpslab_geoip: +# # You should specify your personal licence key +# license: '%env(GEOIP_LICENSE)%' +# +# # Edition ID of database you need +# edition: 'GeoLite2-City' diff --git a/gpslab/geoip2/2.0/manifest.json b/gpslab/geoip2/2.0/manifest.json new file mode 100644 index 00000000..3008185f --- /dev/null +++ b/gpslab/geoip2/2.0/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "GpsLab\\Bundle\\GeoIP2Bundle\\GpsLabGeoIP2Bundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "composer-scripts": { + "geoip2:update": "symfony-cmd" + }, + "env": { + "GEOIP_LICENSE": "" + } +} From 5c45da4ac8435379611d60588df8c784ba464576 Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Wed, 18 Mar 2020 15:30:57 +0100 Subject: [PATCH 187/394] Add recipe for monsieurbiz/sylius-alert-message-plugin=1.0 --- .../monsieurbiz_sylius_alert_message_plugin.yaml | 2 ++ .../monsieurbiz_sylius_alert_message_plugin.yaml | 3 +++ .../sylius-alert-message-plugin/1.0/manifest.json | 10 ++++++++++ 3 files changed, 15 insertions(+) create mode 100644 monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml create mode 100644 monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml create mode 100644 monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml b/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml new file mode 100644 index 00000000..1c6ed2e8 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/config/packages/monsieurbiz_sylius_alert_message_plugin.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@MonsieurBizSyliusAlertMessagePlugin/Resources/config/config.yaml" } diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml b/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml new file mode 100644 index 00000000..7fae4293 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/config/routes/monsieurbiz_sylius_alert_message_plugin.yaml @@ -0,0 +1,3 @@ +monsieurbiz_sylius_alert_message_admin: + resource: "@MonsieurBizSyliusAlertMessagePlugin/Resources/config/routing/admin.yaml" + prefix: /admin diff --git a/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json b/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json new file mode 100644 index 00000000..9bdff693 --- /dev/null +++ b/monsieurbiz/sylius-alert-message-plugin/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusAlertMessagePlugin\\MonsieurBizSyliusAlertMessagePlugin": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4f352ba0f12c5de0c6cadecbf045a43e2458ba01 Mon Sep 17 00:00:00 2001 From: Vincent Chalamon Date: Thu, 19 Mar 2020 11:26:52 +0100 Subject: [PATCH 188/394] Add tilleuls/migration-bundle --- .../1.1/config/packages/coop_tilleuls_migration.yaml | 11 +++++++++++ tilleuls/migration-bundle/1.1/manifest.json | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml create mode 100644 tilleuls/migration-bundle/1.1/manifest.json diff --git a/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml new file mode 100644 index 00000000..855e91df --- /dev/null +++ b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml @@ -0,0 +1,11 @@ +# Read the documentation: https://github.com/coopTilleuls/CoopTilleulsMigrationBundle/blob/master/Resources/doc/getting_started.md +coop_tilleuls_migration: + legacy_connection_name: legacy + +doctrine: + dbal: + default_connection: default + connections: + legacy: + wrapper_class: 'CoopTilleuls\MigrationBundle\Doctrine\DBAL\DisabledConnection' + url: "%env(LEGACY_DATABASE_URL)%" diff --git a/tilleuls/migration-bundle/1.1/manifest.json b/tilleuls/migration-bundle/1.1/manifest.json new file mode 100644 index 00000000..067edb80 --- /dev/null +++ b/tilleuls/migration-bundle/1.1/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "CoopTilleuls\\MigrationBundle\\CoopTilleulsMigrationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LEGACY_DATABASE_URL": "mysql://legacy_db_user:legacy_db_password@127.0.0.1:3306/legacy_db_name" + } +} From 7f12ffcfa937318d4a2a028ff68d7fbb0373dd17 Mon Sep 17 00:00:00 2001 From: "Matthew J. Mucklo" Date: Wed, 25 Mar 2020 21:52:35 -0700 Subject: [PATCH 189/394] Updates for mmucklo/queue-bundle version 6 --- .../6.0/config/routes/dtc_queue.yaml | 2 ++ mmucklo/queue-bundle/6.0/manifest.json | 11 +++++++ mmucklo/queue-bundle/6.0/post-install.txt | 29 +++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml create mode 100644 mmucklo/queue-bundle/6.0/manifest.json create mode 100644 mmucklo/queue-bundle/6.0/post-install.txt diff --git a/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml b/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml new file mode 100644 index 00000000..1ca1907c --- /dev/null +++ b/mmucklo/queue-bundle/6.0/config/routes/dtc_queue.yaml @@ -0,0 +1,2 @@ +dtc_queue: + resource: '@DtcQueueBundle/Resources/config/routing.yml' diff --git a/mmucklo/queue-bundle/6.0/manifest.json b/mmucklo/queue-bundle/6.0/manifest.json new file mode 100644 index 00000000..a4e11cc9 --- /dev/null +++ b/mmucklo/queue-bundle/6.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Dtc\\QueueBundle\\DtcQueueBundle": ["all"] + }, + "copy-from-package": { + "Resources/config/dtc_queue.yaml": "%CONFIG_DIR%/packages/dtc_queue.yaml" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/mmucklo/queue-bundle/6.0/post-install.txt b/mmucklo/queue-bundle/6.0/post-install.txt new file mode 100644 index 00000000..c05fcc54 --- /dev/null +++ b/mmucklo/queue-bundle/6.0/post-install.txt @@ -0,0 +1,29 @@ + + What's next? + + +Please update config/packages/dtc_queue.yaml: + +# config/packages/dtc_queue.yaml +dtc_queue: + manager: + # This parameter is required and should typically be set to one of: + # [odm|orm|beanstalkd|rabbit_mq|redis] + job: orm + # ... + +For a full list of configuration options, see: + * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/full-configuration.md + +If you use the "orm" job manager, you'll want to create a migration or update the schema on your database manually. For more info see: + * https://github.com/mmucklo/DtcQueueBundle/blob/master/Resources/doc/symfony4-5.md + +For admin, make sure twig-pack or twig-bundle + twig is installed. + +On older versions of Symfony, the following might be necessary: + +# config/packages/framework.yaml +framework: + # ... + templating: + engines: ['twig'] From e0befc6f50bc25838ab6c995afd751d370068f0d Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Thu, 26 Mar 2020 09:46:24 +0300 Subject: [PATCH 190/394] add dirty hack license key --- gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml | 12 ++++++------ gpslab/geoip2/2.0/manifest.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml index 0061476b..9e4cd465 100644 --- a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml +++ b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml @@ -1,8 +1,8 @@ # Read the README file for more detailed configuration information # https://github.com/gpslab/geoip2 -#gpslab_geoip: -# # You should specify your personal licence key -# license: '%env(GEOIP_LICENSE)%' -# -# # Edition ID of database you need -# edition: 'GeoLite2-City' +gpslab_geoip: + # You should specify your personal licence key + license: '%env(GEOIP_LICENSE)%' + + # Edition ID of database you need + edition: 'GeoLite2-City' diff --git a/gpslab/geoip2/2.0/manifest.json b/gpslab/geoip2/2.0/manifest.json index 3008185f..95ee3762 100644 --- a/gpslab/geoip2/2.0/manifest.json +++ b/gpslab/geoip2/2.0/manifest.json @@ -9,6 +9,6 @@ "geoip2:update": "symfony-cmd" }, "env": { - "GEOIP_LICENSE": "" + "GEOIP_LICENSE": "YOUR-LICENSE-KEY" } } From 3e7f61601449e61fc6ae9000a34065ca0b223677 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Thu, 26 Mar 2020 10:04:08 +0300 Subject: [PATCH 191/394] impossible use env var for example license key --- gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml | 2 +- gpslab/geoip2/2.0/manifest.json | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml index 9e4cd465..c5a7b93c 100644 --- a/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml +++ b/gpslab/geoip2/2.0/config/packages/gpslab_geoip.yaml @@ -2,7 +2,7 @@ # https://github.com/gpslab/geoip2 gpslab_geoip: # You should specify your personal licence key - license: '%env(GEOIP_LICENSE)%' + license: 'YOUR-LICENSE-KEY' # Edition ID of database you need edition: 'GeoLite2-City' diff --git a/gpslab/geoip2/2.0/manifest.json b/gpslab/geoip2/2.0/manifest.json index 95ee3762..1dd03011 100644 --- a/gpslab/geoip2/2.0/manifest.json +++ b/gpslab/geoip2/2.0/manifest.json @@ -7,8 +7,5 @@ }, "composer-scripts": { "geoip2:update": "symfony-cmd" - }, - "env": { - "GEOIP_LICENSE": "YOUR-LICENSE-KEY" } } From a1dade0446809bfb0177b6d4b1b132088e249c40 Mon Sep 17 00:00:00 2001 From: Vincent Chalamon Date: Thu, 19 Mar 2020 11:51:54 +0100 Subject: [PATCH 192/394] Add vincentchalamon/nav-bundle --- .../nav-bundle/1.0/config/packages/nav.yaml | 8 ++++++++ vincentchalamon/nav-bundle/1.0/manifest.json | 12 ++++++++++++ vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore | 0 3 files changed, 20 insertions(+) create mode 100644 vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml create mode 100644 vincentchalamon/nav-bundle/1.0/manifest.json create mode 100644 vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore diff --git a/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml b/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml new file mode 100644 index 00000000..61184e83 --- /dev/null +++ b/vincentchalamon/nav-bundle/1.0/config/packages/nav.yaml @@ -0,0 +1,8 @@ +# Read the documentation: https://github.com/vincentchalamon/nav-bundle +nav: + enable_profiler: '%kernel.debug%' + url: '%env(NAV_URL)%' # i.e.: https://user:pass@www.example.com/NAV_WS/ + paths: + App: + path: '%kernel.project_dir%/src/Entity' + namespace: 'App/Entity' diff --git a/vincentchalamon/nav-bundle/1.0/manifest.json b/vincentchalamon/nav-bundle/1.0/manifest.json new file mode 100644 index 00000000..2d010b1c --- /dev/null +++ b/vincentchalamon/nav-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "NavBundle\\NavBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + }, + "env": { + "NAV_URL": "http://user:password@host/WS/Page/" + } +} diff --git a/vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore b/vincentchalamon/nav-bundle/1.0/src/Entity/.gitignore new file mode 100644 index 00000000..e69de29b From cb6862ee9513511e6c00cf384ef89521a22dec39 Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Fri, 27 Mar 2020 14:23:40 +0100 Subject: [PATCH 193/394] KunstmaanNodeBundle: Disable permissions by default for v5.5+ --- kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml | 4 ++++ kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml | 1 + kunstmaan/node-bundle/5.5/manifest.json | 1 + 3 files changed, 6 insertions(+) create mode 100644 kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml create mode 120000 kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml create mode 120000 kunstmaan/node-bundle/5.5/manifest.json diff --git a/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml new file mode 100644 index 00000000..c55f6a0f --- /dev/null +++ b/kunstmaan/node-bundle/5.5/config/packages/kunstmaan_node.yaml @@ -0,0 +1,4 @@ +kunstmaan_node: + lock: + enabled: true + enable_permissions: false diff --git a/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml b/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml new file mode 120000 index 00000000..93485f0c --- /dev/null +++ b/kunstmaan/node-bundle/5.5/config/routes/kunstmaan_node.yaml @@ -0,0 +1 @@ +../../../5.2/config/routes/kunstmaan_node.yaml \ No newline at end of file diff --git a/kunstmaan/node-bundle/5.5/manifest.json b/kunstmaan/node-bundle/5.5/manifest.json new file mode 120000 index 00000000..4e060456 --- /dev/null +++ b/kunstmaan/node-bundle/5.5/manifest.json @@ -0,0 +1 @@ +../5.2/manifest.json \ No newline at end of file From dcfcd06cd75d9c30a332e7f7bdaf29696c6dd6da Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Sat, 28 Mar 2020 09:20:47 +0100 Subject: [PATCH 194/394] Add recipe for symfony-consul-bundle --- .../symfony-consul-bundle/0.1/config/packages/consul.yaml | 7 +++++++ .../symfony-consul-bundle/0.1/config/routes/consul.yaml | 2 ++ akondas/symfony-consul-bundle/0.1/manifest.json | 8 ++++++++ 3 files changed, 17 insertions(+) create mode 100644 akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml create mode 100644 akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml create mode 100644 akondas/symfony-consul-bundle/0.1/manifest.json diff --git a/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml new file mode 100644 index 00000000..2a9899b2 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml @@ -0,0 +1,7 @@ +consul: + service: + name: 'symfony-app' + host: 'localhost' + port: 8000 + client: + base_uri: http://127.0.0.1:8500 diff --git a/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml b/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml new file mode 100644 index 00000000..aec921f5 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/config/routes/consul.yaml @@ -0,0 +1,2 @@ +consul_bundle: + resource: "@ConsulBundle/Resources/config/routing.yml" diff --git a/akondas/symfony-consul-bundle/0.1/manifest.json b/akondas/symfony-consul-bundle/0.1/manifest.json new file mode 100644 index 00000000..c972bba6 --- /dev/null +++ b/akondas/symfony-consul-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Akondas\\ConsulBundle\\ConsulBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From cd12bbc5a78127238c4c28f1212f7f06e6960865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 30 Mar 2020 10:12:42 +0200 Subject: [PATCH 195/394] Add tilleuls/sylius-quick-import-plugin --- .../0.1/config/routes/sylius_quick_import.yaml | 3 +++ tilleuls/sylius-quick-import-plugin/0.1/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml create mode 100644 tilleuls/sylius-quick-import-plugin/0.1/manifest.json diff --git a/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml b/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml new file mode 100644 index 00000000..58aaeba6 --- /dev/null +++ b/tilleuls/sylius-quick-import-plugin/0.1/config/routes/sylius_quick_import.yaml @@ -0,0 +1,3 @@ +coop_tilleuls_sylius_quick_import_admin: + resource: "@CoopTilleulsSyliusQuickImportPlugin/Resources/config/admin_routing.yml" + prefix: /admin diff --git a/tilleuls/sylius-quick-import-plugin/0.1/manifest.json b/tilleuls/sylius-quick-import-plugin/0.1/manifest.json new file mode 100644 index 00000000..0cfd5a05 --- /dev/null +++ b/tilleuls/sylius-quick-import-plugin/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "CoopTilleuls\\SyliusQuickImportPlugin\\CoopTilleulsSyliusQuickImportPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 90634c2f177403312b34c07e7b118b7e47faa45a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Holeczy?= Date: Tue, 31 Mar 2020 18:45:27 +0200 Subject: [PATCH 196/394] Add recipe for dobryprogramator/smartform-bundle --- .../1.0/config/packages/dobry_programator_smartform.yaml | 2 ++ dobryprogramator/smartform-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml create mode 100644 dobryprogramator/smartform-bundle/1.0/manifest.json diff --git a/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml new file mode 100644 index 00000000..f5cef364 --- /dev/null +++ b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml @@ -0,0 +1,2 @@ +dobry_programator_smartform: + client_id: '%env(SMARTFORM_CLIENT_ID)%' \ No newline at end of file diff --git a/dobryprogramator/smartform-bundle/1.0/manifest.json b/dobryprogramator/smartform-bundle/1.0/manifest.json new file mode 100644 index 00000000..4a864667 --- /dev/null +++ b/dobryprogramator/smartform-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "DobryProgramator\\SmartformBundle\\DobryProgramatorSmartformBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file From cc4e3a8d379e726c63f031dd5a2e06c05b9b14b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Holeczy?= Date: Tue, 31 Mar 2020 18:47:19 +0200 Subject: [PATCH 197/394] Add recipe for dobryprogramator/smartform-bundle --- .../1.0/config/packages/dobry_programator_smartform.yaml | 2 +- dobryprogramator/smartform-bundle/1.0/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml index f5cef364..13089c65 100644 --- a/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml +++ b/dobryprogramator/smartform-bundle/1.0/config/packages/dobry_programator_smartform.yaml @@ -1,2 +1,2 @@ dobry_programator_smartform: - client_id: '%env(SMARTFORM_CLIENT_ID)%' \ No newline at end of file + client_id: '%env(SMARTFORM_CLIENT_ID)%' diff --git a/dobryprogramator/smartform-bundle/1.0/manifest.json b/dobryprogramator/smartform-bundle/1.0/manifest.json index 4a864667..5287a269 100644 --- a/dobryprogramator/smartform-bundle/1.0/manifest.json +++ b/dobryprogramator/smartform-bundle/1.0/manifest.json @@ -5,4 +5,4 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } -} \ No newline at end of file +} From cadc3f632fc76fec46159027ac1a0ae211316450 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Mon, 23 Mar 2020 13:18:45 -0300 Subject: [PATCH 198/394] Set "sonata_admin.options.legacy_twig_text_extension" option --- .../3.64/config/packages/sonata_admin.yaml | 12 ++++++++++++ .../3.64/config/routes/sonata_admin.yaml | 1 + sonata-project/admin-bundle/3.64/manifest.json | 1 + .../admin-bundle/3.64/src/Admin/.gitignore | 1 + 4 files changed, 15 insertions(+) create mode 100644 sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml create mode 120000 sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml create mode 120000 sonata-project/admin-bundle/3.64/manifest.json create mode 120000 sonata-project/admin-bundle/3.64/src/Admin/.gitignore diff --git a/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml b/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml new file mode 100644 index 00000000..7e3ca920 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/config/packages/sonata_admin.yaml @@ -0,0 +1,12 @@ +sonata_admin: + title: 'Sonata Admin' + dashboard: + blocks: + - { type: sonata.admin.block.admin_list, position: left } + options: + legacy_twig_text_extension: false + +sonata_block: + blocks: + sonata.admin.block.admin_list: + contexts: [admin] diff --git a/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml b/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml new file mode 120000 index 00000000..d5150054 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/config/routes/sonata_admin.yaml @@ -0,0 +1 @@ +../../../3.31/config/routes/sonata_admin.yaml \ No newline at end of file diff --git a/sonata-project/admin-bundle/3.64/manifest.json b/sonata-project/admin-bundle/3.64/manifest.json new file mode 120000 index 00000000..7f010afe --- /dev/null +++ b/sonata-project/admin-bundle/3.64/manifest.json @@ -0,0 +1 @@ +../3.31/manifest.json \ No newline at end of file diff --git a/sonata-project/admin-bundle/3.64/src/Admin/.gitignore b/sonata-project/admin-bundle/3.64/src/Admin/.gitignore new file mode 120000 index 00000000..b77f50b3 --- /dev/null +++ b/sonata-project/admin-bundle/3.64/src/Admin/.gitignore @@ -0,0 +1 @@ +../../../3.31/src/Admin/.gitignore \ No newline at end of file From 7c995438d7f6786b53d0f2030de936f5c75f327d Mon Sep 17 00:00:00 2001 From: Manolo Salsas Date: Sat, 4 Apr 2020 14:18:16 +0200 Subject: [PATCH 199/394] Update msalsas_gdpr_consent_banner.yaml Add only a few options. Add link to all configuration options. --- .../1.0/config/packages/msalsas_gdpr_consent_banner.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml index d7c0ad9f..90e8677d 100644 --- a/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml +++ b/msalsas/gdpr-consent-banner-bundle/1.0/config/packages/msalsas_gdpr_consent_banner.yaml @@ -1,7 +1,4 @@ +# See all configuration options at https://github.com/msalsas/MsalsasGdprConsentBannerBundle/blob/master/Resources/doc/index.rst msalsas_gdpr_consent_banner: - has_translations: true - css: default fade_time: 2 - text_message: "" - accept_message: "" time_to_expire: 30 days From cee9d0af211887be468630baffafe157d30f6058 Mon Sep 17 00:00:00 2001 From: Vincent Chalamon Date: Sun, 5 Apr 2020 11:42:21 +0200 Subject: [PATCH 200/394] Fix review --- .../1.1/config/packages/coop_tilleuls_migration.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml index 855e91df..42a4e3dc 100644 --- a/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml +++ b/tilleuls/migration-bundle/1.1/config/packages/coop_tilleuls_migration.yaml @@ -4,7 +4,6 @@ coop_tilleuls_migration: doctrine: dbal: - default_connection: default connections: legacy: wrapper_class: 'CoopTilleuls\MigrationBundle\Doctrine\DBAL\DisabledConnection' From 16ae8583eb1acdfb115cc8ee89f9401d8ceac1a3 Mon Sep 17 00:00:00 2001 From: Romain Monteil Date: Sat, 21 Mar 2020 14:32:07 +0100 Subject: [PATCH 201/394] Add kerox/twig-image-placeholder-extension --- .../1.0/config/packages/kerox_twig_image_placeholder.yaml | 5 +++++ kerox/twig-image-placeholder-extension/1.0/manifest.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml create mode 100644 kerox/twig-image-placeholder-extension/1.0/manifest.json diff --git a/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml b/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml new file mode 100644 index 00000000..4efd9806 --- /dev/null +++ b/kerox/twig-image-placeholder-extension/1.0/config/packages/kerox_twig_image_placeholder.yaml @@ -0,0 +1,5 @@ +services: + Kerox\TwigImagePlaceholder\SvgExtension: + autowire: true + autoconfigure: true + diff --git a/kerox/twig-image-placeholder-extension/1.0/manifest.json b/kerox/twig-image-placeholder-extension/1.0/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/kerox/twig-image-placeholder-extension/1.0/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From c8fd38edb738f6b8321b3bada355ef3beeb87ef9 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 6 Apr 2020 09:55:34 +0200 Subject: [PATCH 202/394] Use yaml for consistency --- .../eav-bundle/0.10/config/packages/msgphp_eav.php | 14 -------------- .../0.10/config/packages/msgphp_eav.yaml | 4 ++++ .../0.10/config/packages/msgphp_user.php | 12 ------------ .../0.10/config/packages/msgphp_user.yaml | 3 +++ .../3.0/config/routes/webauthn_routes.php | 9 --------- .../3.0/config/routes/webauthn_routes.yaml | 3 +++ 6 files changed, 10 insertions(+), 35 deletions(-) delete mode 100644 msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php create mode 100644 msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml delete mode 100644 msgphp/user-bundle/0.10/config/packages/msgphp_user.php create mode 100644 msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml delete mode 100644 web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php create mode 100644 web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml diff --git a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php deleted file mode 100644 index 7ff6ab19..00000000 --- a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.php +++ /dev/null @@ -1,14 +0,0 @@ -extension('msgphp_eav', [ - 'class_mapping' => [ - Attribute::class => \App\Entity\Attribute::class, - AttributeValue::class => \App\Entity\AttributeValue::class, - ], - ]); -}; diff --git a/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml new file mode 100644 index 00000000..ff6648c9 --- /dev/null +++ b/msgphp/eav-bundle/0.10/config/packages/msgphp_eav.yaml @@ -0,0 +1,4 @@ +msgphp_eav: + class_mapping: + MsgPhp\Eav\Attribute: App\Entity\Attribute + MsgPhp\Eav\AttributeValue: App\Entity\AttributeValue diff --git a/msgphp/user-bundle/0.10/config/packages/msgphp_user.php b/msgphp/user-bundle/0.10/config/packages/msgphp_user.php deleted file mode 100644 index 44770919..00000000 --- a/msgphp/user-bundle/0.10/config/packages/msgphp_user.php +++ /dev/null @@ -1,12 +0,0 @@ -extension('msgphp_user', [ - 'class_mapping' => [ - User::class => \App\Entity\User::class, - ], - ]); -}; diff --git a/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml b/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml new file mode 100644 index 00000000..fe7238ff --- /dev/null +++ b/msgphp/user-bundle/0.10/config/packages/msgphp_user.yaml @@ -0,0 +1,3 @@ +msgphp_user: + class_mapping: + MsgPhp\User\User: App\Entity\User diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php deleted file mode 100644 index f8355132..00000000 --- a/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.php +++ /dev/null @@ -1,9 +0,0 @@ -import('.', 'webauthn'); -}; diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml new file mode 100644 index 00000000..fa3e8e9a --- /dev/null +++ b/web-auth/webauthn-symfony-bundle/3.0/config/routes/webauthn_routes.yaml @@ -0,0 +1,3 @@ +webauthn_routes: + resource: . + type: webauthn From 316635f7a07a1254b4a7fabb7f95d3cc1d7741c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Holeczy?= Date: Tue, 7 Apr 2020 15:53:45 +0200 Subject: [PATCH 203/394] Add env var to manifest file --- dobryprogramator/smartform-bundle/1.0/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dobryprogramator/smartform-bundle/1.0/manifest.json b/dobryprogramator/smartform-bundle/1.0/manifest.json index 5287a269..6906e92c 100644 --- a/dobryprogramator/smartform-bundle/1.0/manifest.json +++ b/dobryprogramator/smartform-bundle/1.0/manifest.json @@ -4,5 +4,8 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "SMARTFORM_CLIENT_ID": "" } } From bbebe6262371f03e9b83a32cebbd23c51176dfe5 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:10:44 +0200 Subject: [PATCH 204/394] yaml configuration --- mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml diff --git a/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml new file mode 100644 index 00000000..487e53ad --- /dev/null +++ b/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml @@ -0,0 +1,3 @@ +mael_recaptcha: + key: 'env(resolve:MAEL_RECAPTCHA_KEY)' + secret: 'env(resolve:MAEL_RECAPTCHA_SECRET)' From 82b5aee4247aae3f0ac904ff460a0428f466acd1 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:12:26 +0200 Subject: [PATCH 205/394] Create manifest.json --- mael/recaptcha-bundle/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mael/recaptcha-bundle/manifest.json diff --git a/mael/recaptcha-bundle/manifest.json b/mael/recaptcha-bundle/manifest.json new file mode 100644 index 00000000..37560613 --- /dev/null +++ b/mael/recaptcha-bundle/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From be1e4509e1af9a805acc2f2bd015e311f0cb16bc Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:13:00 +0200 Subject: [PATCH 206/394] Create post-install.txt --- mael/recaptcha-bundle/post-install.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/recaptcha-bundle/post-install.txt diff --git a/mael/recaptcha-bundle/post-install.txt b/mael/recaptcha-bundle/post-install.txt new file mode 100644 index 00000000..9606734d --- /dev/null +++ b/mael/recaptcha-bundle/post-install.txt @@ -0,0 +1,3 @@ + Next for MaelRecaptchaBundle + * Edit mael_recaptcha.yaml add you keys + * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From 0b2edd1150f3777b4f12b22058d16208295df6be Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:20:28 +0200 Subject: [PATCH 207/394] Update mael_recaptcha.yaml --- mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml index 487e53ad..db115dd7 100644 --- a/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml +++ b/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml @@ -1,3 +1,3 @@ mael_recaptcha: - key: 'env(resolve:MAEL_RECAPTCHA_KEY)' - secret: 'env(resolve:MAEL_RECAPTCHA_SECRET)' + key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' + secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' From bc23764439bcd4ef8aba4470621ea0520ced1a99 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:28:24 +0200 Subject: [PATCH 208/394] Create mael_recaptcha.yaml --- mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml diff --git a/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml new file mode 100644 index 00000000..db115dd7 --- /dev/null +++ b/mael/recaptcha-bundle/0.1/config/packages/mael_recaptcha.yaml @@ -0,0 +1,3 @@ +mael_recaptcha: + key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' + secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' From 663844053fd4bcd1445ed7eacc39caf6dd409dfe Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:28:27 +0200 Subject: [PATCH 209/394] Delete mael_recaptcha.yaml --- mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml diff --git a/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml deleted file mode 100644 index db115dd7..00000000 --- a/mael/recaptcha-bundle/config/packages/mael_recaptcha.yaml +++ /dev/null @@ -1,3 +0,0 @@ -mael_recaptcha: - key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' - secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' From 34536aaf0318f3bba2cea18aa79007b311853f04 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:28:40 +0200 Subject: [PATCH 210/394] Delete manifest.json --- mael/recaptcha-bundle/manifest.json | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 mael/recaptcha-bundle/manifest.json diff --git a/mael/recaptcha-bundle/manifest.json b/mael/recaptcha-bundle/manifest.json deleted file mode 100644 index 37560613..00000000 --- a/mael/recaptcha-bundle/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "bundles": { - "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} From 6e08dfb3b075aa10a8b9e0155ef1590aa60aecc0 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:28:47 +0200 Subject: [PATCH 211/394] Delete post-install.txt --- mael/recaptcha-bundle/post-install.txt | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 mael/recaptcha-bundle/post-install.txt diff --git a/mael/recaptcha-bundle/post-install.txt b/mael/recaptcha-bundle/post-install.txt deleted file mode 100644 index 9606734d..00000000 --- a/mael/recaptcha-bundle/post-install.txt +++ /dev/null @@ -1,3 +0,0 @@ - Next for MaelRecaptchaBundle - * Edit mael_recaptcha.yaml add you keys - * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From 9ad87f2cc0015039106ab9a4c81e336cc83e01bc Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:29:07 +0200 Subject: [PATCH 212/394] Create post-install.txt --- mael/recaptcha-bundle/0.1/post-install.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/recaptcha-bundle/0.1/post-install.txt diff --git a/mael/recaptcha-bundle/0.1/post-install.txt b/mael/recaptcha-bundle/0.1/post-install.txt new file mode 100644 index 00000000..9606734d --- /dev/null +++ b/mael/recaptcha-bundle/0.1/post-install.txt @@ -0,0 +1,3 @@ + Next for MaelRecaptchaBundle + * Edit mael_recaptcha.yaml add you keys + * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From 1c6251d1ef2ec76b3a158c6ede84ff3c2bc68c23 Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 8 Apr 2020 18:29:24 +0200 Subject: [PATCH 213/394] Create manifest.json --- mael/recaptcha-bundle/0.1/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mael/recaptcha-bundle/0.1/manifest.json diff --git a/mael/recaptcha-bundle/0.1/manifest.json b/mael/recaptcha-bundle/0.1/manifest.json new file mode 100644 index 00000000..37560613 --- /dev/null +++ b/mael/recaptcha-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 599024ee145e5e1f73df30c32edc6efe3c4deb5c Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Sat, 11 Apr 2020 21:56:54 +0200 Subject: [PATCH 214/394] Fix path in copy-from-package --- monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json index 3a8520b2..0c172f57 100644 --- a/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json +++ b/monsieurbiz/sylius-admin-better-login-plugin/1.0/manifest.json @@ -3,6 +3,6 @@ "MonsieurBiz\\SyliusAdminBetterLoginPlugin\\MonsieurBizSyliusAdminBetterLoginPlugin": ["all"] }, "copy-from-package": { - "src/Resources/views/SyliusUiBundle/Security/_login.html.twig": "templates/SyliusUiBundle/Security/_login.html.twig" + "src/Resources/views/SyliusUiBundle/Security/_login.html.twig": "templates/bundles/SyliusUiBundle/Security/_login.html.twig" } } From decfe8d812c4b1f009c97aa8776b96a516676c6d Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 14:43:34 +0200 Subject: [PATCH 215/394] Initial commit --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..9a1a42aa --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +recipes From e9ac20589688f5b8c1c245dfd953732d935f69b7 Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 14:48:51 +0200 Subject: [PATCH 216/394] Start mattermost-publication-bundle recipe --- README.md | 1 - .../0.3.0/config/mattermost_publication.yaml | 5 +++++ .../0.3.0/manifest.json | 13 +++++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) delete mode 100644 README.md create mode 100644 codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml create mode 100644 codebuds/mattermost-publication-bundle/0.3.0/manifest.json diff --git a/README.md b/README.md deleted file mode 100644 index 9a1a42aa..00000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -recipes diff --git a/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml new file mode 100644 index 00000000..07fcf90c --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml @@ -0,0 +1,5 @@ +mattermost_publication: + webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' + username: ~ + icon_url: ~ + channel: ~ \ No newline at end of file diff --git a/codebuds/mattermost-publication-bundle/0.3.0/manifest.json b/codebuds/mattermost-publication-bundle/0.3.0/manifest.json new file mode 100644 index 00000000..8d63d779 --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Codebuds\\MattermostPublicationBundle": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "MATTERMOST_WEBHOOK_URL": "http://{your-mattermost-site}/hooks/xxx-generatedkey-xxx" + } +} \ No newline at end of file From 455c40c68b297415c83c6d08a09c9304885ad322 Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 15:10:53 +0200 Subject: [PATCH 217/394] Update directory name, update indentation on files --- .../0.3.0/config/mattermost_publication.yaml | 5 ----- .../0.3.0/manifest.json | 13 ------------- .../0.3/config/mattermost_publication.yaml | 5 +++++ .../mattermost-publication-bundle/0.3/manifest.json | 11 +++++++++++ 4 files changed, 16 insertions(+), 18 deletions(-) delete mode 100644 codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml delete mode 100644 codebuds/mattermost-publication-bundle/0.3.0/manifest.json create mode 100644 codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml create mode 100644 codebuds/mattermost-publication-bundle/0.3/manifest.json diff --git a/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml deleted file mode 100644 index 07fcf90c..00000000 --- a/codebuds/mattermost-publication-bundle/0.3.0/config/mattermost_publication.yaml +++ /dev/null @@ -1,5 +0,0 @@ -mattermost_publication: - webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' - username: ~ - icon_url: ~ - channel: ~ \ No newline at end of file diff --git a/codebuds/mattermost-publication-bundle/0.3.0/manifest.json b/codebuds/mattermost-publication-bundle/0.3.0/manifest.json deleted file mode 100644 index 8d63d779..00000000 --- a/codebuds/mattermost-publication-bundle/0.3.0/manifest.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "bundles": { - "Codebuds\\MattermostPublicationBundle": [ - "all" - ] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - }, - "env": { - "MATTERMOST_WEBHOOK_URL": "http://{your-mattermost-site}/hooks/xxx-generatedkey-xxx" - } -} \ No newline at end of file diff --git a/codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml new file mode 100644 index 00000000..aefd5af9 --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml @@ -0,0 +1,5 @@ +mattermost_publication: + webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' + username: null + icon_url: null + channel: null diff --git a/codebuds/mattermost-publication-bundle/0.3/manifest.json b/codebuds/mattermost-publication-bundle/0.3/manifest.json new file mode 100644 index 00000000..909a684a --- /dev/null +++ b/codebuds/mattermost-publication-bundle/0.3/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Codebuds\\MattermostPublicationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "MATTERMOST_WEBHOOK_URL": "http://{your-mattermost-site}/hooks/xxx-generatedkey-xxx" + } +} From 6737f7cf656c4949cee1f70324db51d1843bed8b Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 15:16:45 +0200 Subject: [PATCH 218/394] Move configuration file into correct directory --- .../0.3/config/{ => packages}/mattermost_publication.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename codebuds/mattermost-publication-bundle/0.3/config/{ => packages}/mattermost_publication.yaml (100%) diff --git a/codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml similarity index 100% rename from codebuds/mattermost-publication-bundle/0.3/config/mattermost_publication.yaml rename to codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml From 58e9249e517c539981d0f9d43125ef217597543a Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 15:29:26 +0200 Subject: [PATCH 219/394] Reorder cofiguration file --- .../0.3/config/packages/mattermost_publication.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml index aefd5af9..d451ed16 100644 --- a/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml +++ b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml @@ -1,5 +1,5 @@ mattermost_publication: webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' + channel: null username: null icon_url: null - channel: null From 981202615f24896a5c25e32688657fc6f3cbea1f Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 15:44:33 +0200 Subject: [PATCH 220/394] Fix typo in bundle namespace --- codebuds/mattermost-publication-bundle/0.3/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codebuds/mattermost-publication-bundle/0.3/manifest.json b/codebuds/mattermost-publication-bundle/0.3/manifest.json index 909a684a..990356c4 100644 --- a/codebuds/mattermost-publication-bundle/0.3/manifest.json +++ b/codebuds/mattermost-publication-bundle/0.3/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "Codebuds\\MattermostPublicationBundle": ["all"] + "CodeBuds\\MattermostPublicationBundle": ["all"] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" From e0de7d57d3b74230fa8bd3fd7473895bda5963ff Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Sun, 12 Apr 2020 15:52:30 +0200 Subject: [PATCH 221/394] Fix path in bundle namespace --- codebuds/mattermost-publication-bundle/0.3/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codebuds/mattermost-publication-bundle/0.3/manifest.json b/codebuds/mattermost-publication-bundle/0.3/manifest.json index 990356c4..efab6d9c 100644 --- a/codebuds/mattermost-publication-bundle/0.3/manifest.json +++ b/codebuds/mattermost-publication-bundle/0.3/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "CodeBuds\\MattermostPublicationBundle": ["all"] + "CodeBuds\\MattermostPublicationBundle\\MattermostPublicationBundle": ["all"] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" From 540a9ebbc616e8bd7ca46cf7d9dc0dfb8cc75af0 Mon Sep 17 00:00:00 2001 From: Georgi Gabrovski Date: Mon, 13 Apr 2020 10:03:58 +0300 Subject: [PATCH 222/394] Add recipe for otobul/epaybg-bundle --- .../1/config/packages/otobul_epaybg.yaml | 9 +++++++++ .../1/config/routes/otobul_epaybg.yaml | 3 +++ otobul/epaybg-bundle/1/manifest.json | 13 +++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml create mode 100644 otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml create mode 100644 otobul/epaybg-bundle/1/manifest.json diff --git a/otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml b/otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml new file mode 100644 index 00000000..edb8c795 --- /dev/null +++ b/otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml @@ -0,0 +1,9 @@ +otobul_epaybg: + # Identification number of the merchant + min: '%env(OTOBUL_EPAYBG_MIN)%' + + # The secret word of the merchant + secret: '%env(OTOBUL_EPAYBG_SECRET)%' + + # If true all requests will be sent to ePay.bg’s Demo System + isDemo: '%env(bool:OTOBUL_EPAYBG_IS_DEMO)%' diff --git a/otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml b/otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml new file mode 100644 index 00000000..1e6fe676 --- /dev/null +++ b/otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml @@ -0,0 +1,3 @@ +otobul_epaybg: + resource: '@OtobulEpaybgBundle/Resources/config/routes.xml' + prefix: /webhook/epaybg diff --git a/otobul/epaybg-bundle/1/manifest.json b/otobul/epaybg-bundle/1/manifest.json new file mode 100644 index 00000000..c3f481c1 --- /dev/null +++ b/otobul/epaybg-bundle/1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Otobul\\EpaybgBundle\\OtobulEpaybgBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "OTOBUL_EPAYBG_MIN": "YOUR_EPAYBG_MIN", + "OTOBUL_EPAYBG_SECRET": "YOUR_EPAYBG_SECRET", + "OTOBUL_EPAYBG_IS_DEMO": true + } +} From 17edfdbfcb6409104edbccf68c7128dc9cdc7bd3 Mon Sep 17 00:00:00 2001 From: Georgi Gabrovski Date: Mon, 13 Apr 2020 10:17:20 +0300 Subject: [PATCH 223/394] Fix not valid JSON error recipe for otobul/epaybg-bundle --- otobul/epaybg-bundle/1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/otobul/epaybg-bundle/1/manifest.json b/otobul/epaybg-bundle/1/manifest.json index c3f481c1..4667e727 100644 --- a/otobul/epaybg-bundle/1/manifest.json +++ b/otobul/epaybg-bundle/1/manifest.json @@ -8,6 +8,6 @@ "env": { "OTOBUL_EPAYBG_MIN": "YOUR_EPAYBG_MIN", "OTOBUL_EPAYBG_SECRET": "YOUR_EPAYBG_SECRET", - "OTOBUL_EPAYBG_IS_DEMO": true + "OTOBUL_EPAYBG_IS_DEMO": "true" } } From d677c66bced089f68c34fa2c4b9be901332f9290 Mon Sep 17 00:00:00 2001 From: Georgi Gabrovski Date: Mon, 13 Apr 2020 10:21:04 +0300 Subject: [PATCH 224/394] Fix version "1" not valid error --- .../epaybg-bundle/{1 => 1.0}/config/packages/otobul_epaybg.yaml | 0 otobul/epaybg-bundle/{1 => 1.0}/config/routes/otobul_epaybg.yaml | 0 otobul/epaybg-bundle/{1 => 1.0}/manifest.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename otobul/epaybg-bundle/{1 => 1.0}/config/packages/otobul_epaybg.yaml (100%) rename otobul/epaybg-bundle/{1 => 1.0}/config/routes/otobul_epaybg.yaml (100%) rename otobul/epaybg-bundle/{1 => 1.0}/manifest.json (100%) diff --git a/otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml similarity index 100% rename from otobul/epaybg-bundle/1/config/packages/otobul_epaybg.yaml rename to otobul/epaybg-bundle/1.0/config/packages/otobul_epaybg.yaml diff --git a/otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml b/otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml similarity index 100% rename from otobul/epaybg-bundle/1/config/routes/otobul_epaybg.yaml rename to otobul/epaybg-bundle/1.0/config/routes/otobul_epaybg.yaml diff --git a/otobul/epaybg-bundle/1/manifest.json b/otobul/epaybg-bundle/1.0/manifest.json similarity index 100% rename from otobul/epaybg-bundle/1/manifest.json rename to otobul/epaybg-bundle/1.0/manifest.json From e2884b89c7efc8366c20dbc4b9c37fd699f0b4ae Mon Sep 17 00:00:00 2001 From: Dmitry Meliukh Date: Tue, 14 Apr 2020 17:07:29 +0300 Subject: [PATCH 225/394] feat(config): add configuration for bundle to recipe US-34680 --- .../sms-bundle/1.0/config/packages/artox_lab_sms.yaml | 4 ++++ artox-lab/sms-bundle/1.0/manifest.json | 8 ++++++++ artox-lab/sms-bundle/1.0/post-install.txt | 5 +++++ 3 files changed, 17 insertions(+) create mode 100644 artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml create mode 100644 artox-lab/sms-bundle/1.0/manifest.json create mode 100644 artox-lab/sms-bundle/1.0/post-install.txt diff --git a/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml b/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml new file mode 100644 index 00000000..7e744ee9 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/config/packages/artox_lab_sms.yaml @@ -0,0 +1,4 @@ +artox_lab_sms: + providers: + # You must to define at least one provider configuration + # See more info at https://github.com/artox-lab/sms-bundle diff --git a/artox-lab/sms-bundle/1.0/manifest.json b/artox-lab/sms-bundle/1.0/manifest.json new file mode 100644 index 00000000..1b1be053 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "ArtoxLab\\Bundle\\SmsBundle\\ArtoxLabSmsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/artox-lab/sms-bundle/1.0/post-install.txt b/artox-lab/sms-bundle/1.0/post-install.txt new file mode 100644 index 00000000..e4268991 --- /dev/null +++ b/artox-lab/sms-bundle/1.0/post-install.txt @@ -0,0 +1,5 @@ +Getting started using artox-lab/sms-bundle. What's next? + + You must to define at least one provider configuration in %CONFIG_DIR%/packages/artox_lab_sms.yaml. + + * More info you can find in the documentation at https://github.com/artox-lab/sms-bundle#step-3-configuration From 1bb6745c9c92c5ad063a7d58cd9ad7f8ae157f92 Mon Sep 17 00:00:00 2001 From: Tin Benjamin Matuka Date: Wed, 15 Apr 2020 20:13:52 +0200 Subject: [PATCH 226/394] Add recipe for tbmatuka/editorjs-bundle --- .../editorjs-bundle/0.1/config/packages/editorjs.yaml | 3 +++ tbmatuka/editorjs-bundle/0.1/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml create mode 100644 tbmatuka/editorjs-bundle/0.1/manifest.json diff --git a/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml b/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml new file mode 100644 index 00000000..89d4c6a9 --- /dev/null +++ b/tbmatuka/editorjs-bundle/0.1/config/packages/editorjs.yaml @@ -0,0 +1,3 @@ +twig: + form_themes: + - '@TbmatukaEditorjs/Form/editorjs_widget.html.twig' diff --git a/tbmatuka/editorjs-bundle/0.1/manifest.json b/tbmatuka/editorjs-bundle/0.1/manifest.json new file mode 100644 index 00000000..e0408f15 --- /dev/null +++ b/tbmatuka/editorjs-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Tbmatuka\\EditorjsBundle\\TbmatukaEditorjsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4915c1301e583780bb2aa47ccf8b66efb4e3db76 Mon Sep 17 00:00:00 2001 From: Jacques Bodin-Hullin Date: Wed, 22 Apr 2020 11:50:20 +0200 Subject: [PATCH 227/394] Add first recipe for monsieurbiz/sylius-rich-editor-plugin --- .../monsieurbiz_sylius_rich_editor_plugin.yaml | 2 ++ .../routes/monsieurbiz_sylius_rich_editor_plugin.yaml | 2 ++ .../sylius-rich-editor-plugin/1.0/manifest.json | 10 ++++++++++ 3 files changed, 14 insertions(+) create mode 100644 monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml create mode 100644 monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml create mode 100644 monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml new file mode 100644 index 00000000..71e3ce6e --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/packages/monsieurbiz_sylius_rich_editor_plugin.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@MonsieurBizSyliusRichEditorPlugin/Resources/config/config.yaml" } diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml new file mode 100644 index 00000000..d6979d2e --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/config/routes/monsieurbiz_sylius_rich_editor_plugin.yaml @@ -0,0 +1,2 @@ +monsieur_biz_rich_editor_plugin: + resource: "@MonsieurBizSyliusRichEditorPlugin/Resources/config/routing.yaml" diff --git a/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json b/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json new file mode 100644 index 00000000..a33a848a --- /dev/null +++ b/monsieurbiz/sylius-rich-editor-plugin/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "MonsieurBiz\\SyliusRichEditorPlugin\\MonsieurBizSyliusRichEditorPlugin": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From ffef64e10b4788901fa98c949fe69c06e4e5ab2d Mon Sep 17 00:00:00 2001 From: Olivier ALLAIN Date: Wed, 22 Apr 2020 11:26:52 +0200 Subject: [PATCH 228/394] add synolia/sylius-scheduler-command-plugin --- .../1.0/config/packages/sylius_scheduler_command.yaml | 2 ++ .../1.0/config/routes/sylius_scheduler_command.yaml | 3 +++ .../sylius-scheduler-command-plugin/1.0/manifest.json | 11 +++++++++++ .../1.0/post-install.txt | 6 ++++++ 4 files changed, 22 insertions(+) create mode 100644 synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml create mode 100644 synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml create mode 100644 synolia/sylius-scheduler-command-plugin/1.0/manifest.json create mode 100644 synolia/sylius-scheduler-command-plugin/1.0/post-install.txt diff --git a/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml b/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml new file mode 100644 index 00000000..a0afbda5 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/config/packages/sylius_scheduler_command.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@SynoliaSyliusSchedulerCommandPlugin/Resources/config/config.yaml" } diff --git a/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml b/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml new file mode 100644 index 00000000..46d96d67 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/config/routes/sylius_scheduler_command.yaml @@ -0,0 +1,3 @@ +synolia_scheduled_command: + resource: "@SynoliaSyliusSchedulerCommandPlugin/Resources/config/admin_routing.yaml" + prefix: /admin diff --git a/synolia/sylius-scheduler-command-plugin/1.0/manifest.json b/synolia/sylius-scheduler-command-plugin/1.0/manifest.json new file mode 100644 index 00000000..257ed802 --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Synolia\\SyliusSchedulerCommandPlugin\\SynoliaSyliusSchedulerCommandPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + "src/Migrations/": "%SRC_DIR%/Migrations/" + } +} diff --git a/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt b/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt new file mode 100644 index 00000000..1e19ad7d --- /dev/null +++ b/synolia/sylius-scheduler-command-plugin/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Synolia SyliusSchedulerCommandPlugin + + + * Run doctrine:migrations:migrate to upgrade database + * Add Cron on synolia:scheduler-run to execute scheduled commands From f7344b325ac9294a2234cb9a610c2058f36f451c Mon Sep 17 00:00:00 2001 From: Jacques de Lamballerie Date: Thu, 23 Apr 2020 15:03:40 +0200 Subject: [PATCH 229/394] JacquesndlMailerBundle: add recipe --- .../1.0/config/packages/jacquesndl_mailer.yaml | 4 ++++ jacquesndl/mailer-bundle/1.0/manifest.json | 12 ++++++++++++ jacquesndl/mailer-bundle/1.0/post-install.txt | 6 ++++++ 3 files changed, 22 insertions(+) create mode 100755 jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml create mode 100755 jacquesndl/mailer-bundle/1.0/manifest.json create mode 100644 jacquesndl/mailer-bundle/1.0/post-install.txt diff --git a/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml b/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml new file mode 100755 index 00000000..61c8b5aa --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/config/packages/jacquesndl_mailer.yaml @@ -0,0 +1,4 @@ +jacquesndl_mailer: + sender: + name: '%env(JACQUESNDL_MAILER_SENDER_NAME)%' + address: '%env(JACQUESNDL_MAILER_SENDER_ADDRESS)%' diff --git a/jacquesndl/mailer-bundle/1.0/manifest.json b/jacquesndl/mailer-bundle/1.0/manifest.json new file mode 100755 index 00000000..1ae1c4f1 --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Jacquesndl\\MailerBundle\\JacquesndlMailerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "JACQUESNDL_MAILER_SENDER_NAME": "Example", + "JACQUESNDL_MAILER_SENDER_ADDRESS": "example@domain.tld" + } +} diff --git a/jacquesndl/mailer-bundle/1.0/post-install.txt b/jacquesndl/mailer-bundle/1.0/post-install.txt new file mode 100644 index 00000000..2e137be1 --- /dev/null +++ b/jacquesndl/mailer-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + Jacquesndl/MailerBundle, What's next? + + + * The Jacquesndl/MailerBundle needs your default sender configuration. + Modify your JACQUESNDL_MAILER_SENDER_NAME and JACQUESNDL_MAILER_SENDER_ADDRESS config in .env From 1e6a1523e240af042d2867de5261722addd729ca Mon Sep 17 00:00:00 2001 From: Jacques de Lamballerie Date: Thu, 23 Apr 2020 15:26:42 +0200 Subject: [PATCH 230/394] JacquesndlMailerBundle: add conflict to manifest --- jacquesndl/mailer-bundle/1.0/manifest.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jacquesndl/mailer-bundle/1.0/manifest.json b/jacquesndl/mailer-bundle/1.0/manifest.json index 1ae1c4f1..abfa9e0b 100755 --- a/jacquesndl/mailer-bundle/1.0/manifest.json +++ b/jacquesndl/mailer-bundle/1.0/manifest.json @@ -8,5 +8,9 @@ "env": { "JACQUESNDL_MAILER_SENDER_NAME": "Example", "JACQUESNDL_MAILER_SENDER_ADDRESS": "example@domain.tld" + }, + "conflict": { + "symfony/framework-bundle": "<4.4", + "symfony/twig-bundle": "<4.4" } } From 6d537c1c71877291427133d7aa8720697c612fe4 Mon Sep 17 00:00:00 2001 From: Jacques de Lamballerie Date: Thu, 23 Apr 2020 16:14:47 +0200 Subject: [PATCH 231/394] JacquesndlMailerBundle: add conflict to manifest --- jacquesndl/mailer-bundle/1.0/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jacquesndl/mailer-bundle/1.0/manifest.json b/jacquesndl/mailer-bundle/1.0/manifest.json index abfa9e0b..ff1716b3 100755 --- a/jacquesndl/mailer-bundle/1.0/manifest.json +++ b/jacquesndl/mailer-bundle/1.0/manifest.json @@ -10,7 +10,6 @@ "JACQUESNDL_MAILER_SENDER_ADDRESS": "example@domain.tld" }, "conflict": { - "symfony/framework-bundle": "<4.4", - "symfony/twig-bundle": "<4.4" + "symfony/symfony": "<4.4" } } From 2b085629478cec7b136350fa431bb2f7979ae0de Mon Sep 17 00:00:00 2001 From: Baldinof Date: Fri, 24 Apr 2020 19:35:04 +0200 Subject: [PATCH 232/394] Add recipe for baldinof/roadrunner-bundle v1.2.0 --- .../config/packages/baldinof_road_runner.yaml | 18 ++++++++++++++++++ baldinof/roadrunner-bundle/1.2/manifest.json | 15 +++++++++++++++ .../roadrunner-bundle/1.2/post-install.txt | 8 ++++++++ 3 files changed, 41 insertions(+) create mode 100644 baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml create mode 100644 baldinof/roadrunner-bundle/1.2/manifest.json create mode 100644 baldinof/roadrunner-bundle/1.2/post-install.txt diff --git a/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml new file mode 100644 index 00000000..65267f38 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/config/packages/baldinof_road_runner.yaml @@ -0,0 +1,18 @@ +baldinof_road_runner: + # The kernel is preserved between requests. Change this to `true` + # if you want to reboot it, and use a fresh container on each request. + should_reboot_kernel: false + + # Integrations are automatically detected, depending on installed bundle & current configuration + # See https://github.com/baldinof/roadrunner-bundle#integrations + default_integrations: true + + # Allow to send prometheus metrics to the master RoadRunner process, + # via a `Spiral\RoadRunner\MetricsInterface` service. + # See https://github.com/baldinof/roadrunner-bundle#metrics + metrics_enabled: false + + # You can use middlewares to manipulate PSR requests & responses. + # See https://github.com/baldinof/roadrunner-bundle#middlewares + # middlewares: + # - App\Middleware\YourMiddleware diff --git a/baldinof/roadrunner-bundle/1.2/manifest.json b/baldinof/roadrunner-bundle/1.2/manifest.json new file mode 100644 index 00000000..2bbe3132 --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/manifest.json @@ -0,0 +1,15 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + ".rr.yaml": ".rr.yaml", + ".rr.dev.yaml": ".rr.dev.yaml" + }, + "bundles": { + "Baldinof\\RoadRunnerBundle\\BaldinofRoadRunnerBundle": ["all"] + }, + "gitignore": [ + "/bin/rr" + ] +} diff --git a/baldinof/roadrunner-bundle/1.2/post-install.txt b/baldinof/roadrunner-bundle/1.2/post-install.txt new file mode 100644 index 00000000..6f4781be --- /dev/null +++ b/baldinof/roadrunner-bundle/1.2/post-install.txt @@ -0,0 +1,8 @@ + + What's next for RoadRunner Bundle + + + * Download RoadRunner locally: vendor/bin/rr get --location bin/ + * Run your application: bin/rr serve -c .rr.dev.yaml --debug + * For production, use: bin/rr serve + * Visit http://localhost:8080 From a7f4ceb7cc386632f8101db022e9a31e47b2879c Mon Sep 17 00:00:00 2001 From: Olivier ALLAIN Date: Fri, 24 Apr 2020 19:51:19 +0200 Subject: [PATCH 233/394] add synolia/sylius-mail-tester-plugin --- .../1.0/config/routes/sylius_mail_tester.yaml | 3 +++ synolia/sylius-mail-tester-plugin/1.0/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml create mode 100644 synolia/sylius-mail-tester-plugin/1.0/manifest.json diff --git a/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml b/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml new file mode 100644 index 00000000..afd86427 --- /dev/null +++ b/synolia/sylius-mail-tester-plugin/1.0/config/routes/sylius_mail_tester.yaml @@ -0,0 +1,3 @@ +synolia_mail_tester: + resource: "@SynoliaSyliusMailTesterPlugin/Resources/config/admin_routing.yaml" + prefix: /admin diff --git a/synolia/sylius-mail-tester-plugin/1.0/manifest.json b/synolia/sylius-mail-tester-plugin/1.0/manifest.json new file mode 100644 index 00000000..fffc4f8b --- /dev/null +++ b/synolia/sylius-mail-tester-plugin/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Synolia\\SyliusMailTesterPlugin\\SynoliaSyliusMailTesterPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 30f24a56c7537a104bf5b255de7eb2c11ed7086b Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 26 Apr 2020 11:19:54 +0200 Subject: [PATCH 234/394] Update post-install.txt Editing the instruction after installation of the bundle --- mael/recaptcha-bundle/0.1/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mael/recaptcha-bundle/0.1/post-install.txt b/mael/recaptcha-bundle/0.1/post-install.txt index 9606734d..37ef65de 100644 --- a/mael/recaptcha-bundle/0.1/post-install.txt +++ b/mael/recaptcha-bundle/0.1/post-install.txt @@ -1,3 +1,3 @@ Next for MaelRecaptchaBundle - * Edit mael_recaptcha.yaml add you keys + * Edit mael_recaptcha.yaml add you keys in your .env file * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From 7cc4cb3355482a803b351e505207dd71dd65f2f9 Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 26 Apr 2020 11:30:22 +0200 Subject: [PATCH 235/394] Update manifest.json --- mael/recaptcha-bundle/0.1/manifest.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mael/recaptcha-bundle/0.1/manifest.json b/mael/recaptcha-bundle/0.1/manifest.json index 37560613..4b091f6a 100644 --- a/mael/recaptcha-bundle/0.1/manifest.json +++ b/mael/recaptcha-bundle/0.1/manifest.json @@ -4,5 +4,9 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "MAEL_RECAPTCHA_KEY": "YOUR_RECAPTCHA_KEY", + "MAEL_RECAPTCHA_SECRET": "YOUR_RECAPTCHA_SECRET" } } From 0f41bb41979a066ec9219d8bb2bb9c40a4253b2e Mon Sep 17 00:00:00 2001 From: Dennis de Best Date: Wed, 29 Apr 2020 14:06:56 +0200 Subject: [PATCH 236/394] Remove default null values from config, add link to bundle documentation --- .../0.3/config/packages/mattermost_publication.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml index d451ed16..fc24d3d8 100644 --- a/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml +++ b/codebuds/mattermost-publication-bundle/0.3/config/packages/mattermost_publication.yaml @@ -1,5 +1,5 @@ mattermost_publication: webhook_url: '%env(MATTERMOST_WEBHOOK_URL)%' - channel: null - username: null - icon_url: null + # You can also set the default channel, username and icon_url + # for more information you can checkout the bundle documentation + # https://github.com/codebuds33/mattermost-publication-bundle/blob/master/README.md From 72fffa4c1e833b00baf59f6591f0a77b7a05d478 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sun, 3 May 2020 14:05:48 +0200 Subject: [PATCH 237/394] Allow jobs to fail on SF 3.4. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 37bf3b5e..2561461d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,9 @@ matrix: env: SKELETON_VERSION="^4.4" - php: 7.4 env: SKELETON_VERSION="^5.0" + allow_failures: + - php: 7.4 + env: SKELETON_VERSION="^3.4" before_install: - phpenv config-rm xdebug.ini || true From 8a78f57e587c5f8d4128d53c116c97ac987a41dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Deruss=C3=A9?= Date: Sun, 3 May 2020 14:13:54 +0200 Subject: [PATCH 238/394] [AsyncAws Bundle] Use website documentation URL --- async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml index 0a5e7a4a..664611e5 100644 --- a/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml +++ b/async-aws/async-aws-bundle/0.1/config/packages/async_aws.yaml @@ -1,4 +1,4 @@ -# Read documentation at https://github.com/async-aws/symfony-bundle +# Read documentation at https://async-aws.com/integration/symfony-bundle.html async_aws: config: region: eu-central-1 From ef67b05e8d775f24999e51cff51c8870d0faf142 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Mon, 4 May 2020 07:33:24 +0200 Subject: [PATCH 239/394] Move params to env var --- .../symfony-consul-bundle/0.1/config/packages/consul.yaml | 8 ++++---- akondas/symfony-consul-bundle/0.1/manifest.json | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml index 2a9899b2..e3144479 100644 --- a/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml +++ b/akondas/symfony-consul-bundle/0.1/config/packages/consul.yaml @@ -1,7 +1,7 @@ consul: service: - name: 'symfony-app' - host: 'localhost' - port: 8000 + name: '%env(resolve:CONSUL_SERVICE_NAME)%' + host: '%env(resolve:CONSUL_SERVICE_HOST)%' + port: '%env(resolve:CONSUL_SERVICE_PORT)%' client: - base_uri: http://127.0.0.1:8500 + base_uri: '%env(resolve:CONSUL_CLIENT_BASE_URI)%' diff --git a/akondas/symfony-consul-bundle/0.1/manifest.json b/akondas/symfony-consul-bundle/0.1/manifest.json index c972bba6..a1d56073 100644 --- a/akondas/symfony-consul-bundle/0.1/manifest.json +++ b/akondas/symfony-consul-bundle/0.1/manifest.json @@ -4,5 +4,11 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "CONSUL_SERVICE_NAME": "symfony-app", + "CONSUL_SERVICE_HOST": "localhost", + "CONSUL_SERVICE_PORT": "8000", + "CONSUL_CLIENT_BASE_URI": "http://127.0.0.1:8500" } } From db40e0f78fcbc9eaddd18f6ffcd9bf5c959ca070 Mon Sep 17 00:00:00 2001 From: Jacques de Lamballerie Date: Mon, 4 May 2020 13:51:14 +0200 Subject: [PATCH 240/394] fix: remove useless key --- jacquesndl/mailer-bundle/1.0/manifest.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/jacquesndl/mailer-bundle/1.0/manifest.json b/jacquesndl/mailer-bundle/1.0/manifest.json index ff1716b3..1ae1c4f1 100755 --- a/jacquesndl/mailer-bundle/1.0/manifest.json +++ b/jacquesndl/mailer-bundle/1.0/manifest.json @@ -8,8 +8,5 @@ "env": { "JACQUESNDL_MAILER_SENDER_NAME": "Example", "JACQUESNDL_MAILER_SENDER_ADDRESS": "example@domain.tld" - }, - "conflict": { - "symfony/symfony": "<4.4" } } From 487142b52030a11ca792e90c9bca4c4a2ab1c917 Mon Sep 17 00:00:00 2001 From: Denis Brumann Date: Thu, 7 May 2020 09:49:09 +0200 Subject: [PATCH 241/394] Adds deptrac-recipe. * Adds .deptrac.cache file to gitignore * Creates a default depfile.yml (taken from `deptrac init`) --- sensiolabs-de/deptrac-shim/0.7/depfile.yml | 23 ++++++++++++++++++++ sensiolabs-de/deptrac-shim/0.7/manifest.json | 8 +++++++ 2 files changed, 31 insertions(+) create mode 100644 sensiolabs-de/deptrac-shim/0.7/depfile.yml create mode 100644 sensiolabs-de/deptrac-shim/0.7/manifest.json diff --git a/sensiolabs-de/deptrac-shim/0.7/depfile.yml b/sensiolabs-de/deptrac-shim/0.7/depfile.yml new file mode 100644 index 00000000..a2f8ef84 --- /dev/null +++ b/sensiolabs-de/deptrac-shim/0.7/depfile.yml @@ -0,0 +1,23 @@ +paths: + - ./src +exclude_files: + - .*test.* +layers: + - name: Controller + collectors: + - type: className + regex: .*Controller.* + - name: Repository + collectors: + - type: className + regex: .*Repository.* + - name: Service + collectors: + - type: className + regex: .*Service.* +ruleset: + Controller: + - Service + Service: + - Repository + Repository: diff --git a/sensiolabs-de/deptrac-shim/0.7/manifest.json b/sensiolabs-de/deptrac-shim/0.7/manifest.json new file mode 100644 index 00000000..3714ca82 --- /dev/null +++ b/sensiolabs-de/deptrac-shim/0.7/manifest.json @@ -0,0 +1,8 @@ +{ + "copy-from-recipe": { + "depfile.yml": "depfile.yml" + }, + "gitignore": [ + "/.deptrac.cache" + ] +} From b0d484d661dabec5b022ed385a74f5581f70afe0 Mon Sep 17 00:00:00 2001 From: Denis Brumann Date: Thu, 7 May 2020 09:55:05 +0200 Subject: [PATCH 242/394] Fix validation errors. --- sensiolabs-de/deptrac-shim/0.7/depfile.yaml | 29 ++++++++++++++++++++ sensiolabs-de/deptrac-shim/0.7/depfile.yml | 23 ---------------- sensiolabs-de/deptrac-shim/0.7/manifest.json | 2 +- 3 files changed, 30 insertions(+), 24 deletions(-) create mode 100644 sensiolabs-de/deptrac-shim/0.7/depfile.yaml delete mode 100644 sensiolabs-de/deptrac-shim/0.7/depfile.yml diff --git a/sensiolabs-de/deptrac-shim/0.7/depfile.yaml b/sensiolabs-de/deptrac-shim/0.7/depfile.yaml new file mode 100644 index 00000000..3e1887c8 --- /dev/null +++ b/sensiolabs-de/deptrac-shim/0.7/depfile.yaml @@ -0,0 +1,29 @@ +paths: + - ./src +exclude_files: + - .*test.* +layers: + - + name: Controller + collectors: + - + type: className + regex: .*Controller.* + - + name: Repository + collectors: + - + type: className + regex: .*Repository.* + - + name: Service + collectors: + - + type: className + regex: .*Service.* +ruleset: + Controller: + - Service + Service: + - Repository + Repository: diff --git a/sensiolabs-de/deptrac-shim/0.7/depfile.yml b/sensiolabs-de/deptrac-shim/0.7/depfile.yml deleted file mode 100644 index a2f8ef84..00000000 --- a/sensiolabs-de/deptrac-shim/0.7/depfile.yml +++ /dev/null @@ -1,23 +0,0 @@ -paths: - - ./src -exclude_files: - - .*test.* -layers: - - name: Controller - collectors: - - type: className - regex: .*Controller.* - - name: Repository - collectors: - - type: className - regex: .*Repository.* - - name: Service - collectors: - - type: className - regex: .*Service.* -ruleset: - Controller: - - Service - Service: - - Repository - Repository: diff --git a/sensiolabs-de/deptrac-shim/0.7/manifest.json b/sensiolabs-de/deptrac-shim/0.7/manifest.json index 3714ca82..5af06dcc 100644 --- a/sensiolabs-de/deptrac-shim/0.7/manifest.json +++ b/sensiolabs-de/deptrac-shim/0.7/manifest.json @@ -1,6 +1,6 @@ { "copy-from-recipe": { - "depfile.yml": "depfile.yml" + "depfile.yaml": "depfile.yaml" }, "gitignore": [ "/.deptrac.cache" From 180ca92c7c2c93aac5fcfc38fa2c02e7b8d84ac3 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Fri, 8 May 2020 02:01:08 +0100 Subject: [PATCH 243/394] add enigma972 user bundle --- enigma972/user-bundle/0.3.1/config/packages/user.yaml | 10 ++++++++++ enigma972/user-bundle/0.3.1/config/routes/user.yaml | 3 +++ enigma972/user-bundle/0.3.1/manifest.json | 8 ++++++++ enigma972/user-bundle/0.3.1/post-install.txt | 9 +++++++++ 4 files changed, 30 insertions(+) create mode 100644 enigma972/user-bundle/0.3.1/config/packages/user.yaml create mode 100644 enigma972/user-bundle/0.3.1/config/routes/user.yaml create mode 100644 enigma972/user-bundle/0.3.1/manifest.json create mode 100644 enigma972/user-bundle/0.3.1/post-install.txt diff --git a/enigma972/user-bundle/0.3.1/config/packages/user.yaml b/enigma972/user-bundle/0.3.1/config/packages/user.yaml new file mode 100644 index 00000000..71cd2d7f --- /dev/null +++ b/enigma972/user-bundle/0.3.1/config/packages/user.yaml @@ -0,0 +1,10 @@ +user: + # if this value equal true, the User should confirm theire mail + check_mail: false + # The validity duration in secondes, 4 houres by default (14,400 sec) + reset_password_code_validity: 14400 + # where to redirect after login + target: home + # the no reply email for this app + no_reply_mail: no-reply@mail.com + not_send_welcome_mail: true diff --git a/enigma972/user-bundle/0.3.1/config/routes/user.yaml b/enigma972/user-bundle/0.3.1/config/routes/user.yaml new file mode 100644 index 00000000..dc8eb37a --- /dev/null +++ b/enigma972/user-bundle/0.3.1/config/routes/user.yaml @@ -0,0 +1,3 @@ +user: + resource: '@UserBundle/Controller/' + type: annotation diff --git a/enigma972/user-bundle/0.3.1/manifest.json b/enigma972/user-bundle/0.3.1/manifest.json new file mode 100644 index 00000000..c5520973 --- /dev/null +++ b/enigma972/user-bundle/0.3.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Enigma972\\UserBundle\\UserBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/enigma972/user-bundle/0.3.1/post-install.txt b/enigma972/user-bundle/0.3.1/post-install.txt new file mode 100644 index 00000000..0ff13e61 --- /dev/null +++ b/enigma972/user-bundle/0.3.1/post-install.txt @@ -0,0 +1,9 @@ + + Next: UserBundle Configuration + + + * Create an User entity and extend Enigma972\UserBundle\Entity\User class + + * And add all properties and methods you needs, it is your! + +Documentation: https://www.github.com/enigma972/user-bundle From 8a2d25dd310051dfcf6109513deed2da3e72f13c Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Fri, 8 May 2020 02:09:43 +0100 Subject: [PATCH 244/394] fix bundle version --- enigma972/user-bundle/{0.3.1 => 0.3}/config/packages/user.yaml | 0 enigma972/user-bundle/{0.3.1 => 0.3}/config/routes/user.yaml | 0 enigma972/user-bundle/{0.3.1 => 0.3}/manifest.json | 0 enigma972/user-bundle/{0.3.1 => 0.3}/post-install.txt | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename enigma972/user-bundle/{0.3.1 => 0.3}/config/packages/user.yaml (100%) rename enigma972/user-bundle/{0.3.1 => 0.3}/config/routes/user.yaml (100%) rename enigma972/user-bundle/{0.3.1 => 0.3}/manifest.json (100%) rename enigma972/user-bundle/{0.3.1 => 0.3}/post-install.txt (100%) diff --git a/enigma972/user-bundle/0.3.1/config/packages/user.yaml b/enigma972/user-bundle/0.3/config/packages/user.yaml similarity index 100% rename from enigma972/user-bundle/0.3.1/config/packages/user.yaml rename to enigma972/user-bundle/0.3/config/packages/user.yaml diff --git a/enigma972/user-bundle/0.3.1/config/routes/user.yaml b/enigma972/user-bundle/0.3/config/routes/user.yaml similarity index 100% rename from enigma972/user-bundle/0.3.1/config/routes/user.yaml rename to enigma972/user-bundle/0.3/config/routes/user.yaml diff --git a/enigma972/user-bundle/0.3.1/manifest.json b/enigma972/user-bundle/0.3/manifest.json similarity index 100% rename from enigma972/user-bundle/0.3.1/manifest.json rename to enigma972/user-bundle/0.3/manifest.json diff --git a/enigma972/user-bundle/0.3.1/post-install.txt b/enigma972/user-bundle/0.3/post-install.txt similarity index 100% rename from enigma972/user-bundle/0.3.1/post-install.txt rename to enigma972/user-bundle/0.3/post-install.txt From 0df49152268f865672a4c759350e88b1a9c55be8 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Tue, 12 May 2020 13:05:07 +0200 Subject: [PATCH 245/394] Added oat-sa/bundle-lti1p3 flex recipe for 1.0 --- .../1.0/config/packages/lti1p3.yaml | 36 +++++++++++++++++++ .../1.0/config/routes/lti1p3.yaml | 11 ++++++ .../1.0/config/secrets/dev/private.key | 27 ++++++++++++++ .../1.0/config/secrets/dev/public.key | 9 +++++ oat-sa/bundle-lti1p3/1.0/manifest.json | 14 ++++++++ oat-sa/bundle-lti1p3/1.0/post-install.txt | 11 ++++++ 6 files changed, 108 insertions(+) create mode 100644 oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml create mode 100644 oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml create mode 100644 oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key create mode 100644 oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key create mode 100644 oat-sa/bundle-lti1p3/1.0/manifest.json create mode 100644 oat-sa/bundle-lti1p3/1.0/post-install.txt diff --git a/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml new file mode 100644 index 00000000..ed25b59a --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml @@ -0,0 +1,36 @@ +lti1p3: + key_chains: + platformKey: + key_set_name: "platformSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: ~ + toolKey: + key_set_name: "toolSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: ~ + platforms: + localPlatform: + name: "Local platform" + audience: "http://localhost/platform" + oidc_authentication_url: "http://localhost/lti1p3/oidc/login-authentication" + oauth2_access_token_url: "http://localhost/lti1p3/auth/platformKey/token" + tools: + localTool: + name: "Local tool" + audience: "http://localhost/tool" + oidc_login_initiation_url: "http://localhost/lti1p3/oidc/login-initiation" + launch_url: ~ + deep_link_launch_url: ~ + registrations: + local: + client_id: "client_id" + platform: "localPlatform" + tool: "localTool" + deployment_ids: + - "deploymentId1" + platform_key_chain: "platformKey" + tool_key_chain: "toolKey" + platform_jwks_url: ~ + tool_jwks_url: ~ diff --git a/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml new file mode 100644 index 00000000..42f24119 --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml @@ -0,0 +1,11 @@ +lti1p3_jwks: + resource: '@Lti1p3Bundle/Resources/config/routing/jwks.yaml' + +lti1p3_message_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/message/platform.yaml' + +lti1p3_message_tool: + resource: '@Lti1p3Bundle/Resources/config/routing/message/tool.yaml' + +lti1p3_service_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key b/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key new file mode 100644 index 00000000..c95b2420 --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAyZXlfd5yqChtTH91N76VokquRu2r1EwNDUjA0GAygrPzCpPb +Yokasxzs+60Do/lyTIgd7nRzudAzHnujIPr8GOPIlPlOKT8HuL7xQEN6gmUtz33i +DhK97zK7zOFEmvS8kYPwFAjQ03YKv+3T9b/DbrBZWy2Vx4Wuxf6mZBggKQfwHUuJ +xXDv79NenZarUtC5iFEhJ85ovwjW7yMkcflhUgkf1o/GIR5RKoNPttMXhKYZ4hTl +LglMm1FgRR63pvYoy9Eq644a9x2mbGelO3HnGbkaFo0HxiKbFW1vplHzixYCyjc1 +5pvtBxw/x26p8+lNthuxzaX5HaFMPGs10rRPLwIDAQABAoIBAEFrF7KlQeg4VmAA +7PVOMBkeyzfRYXXfyEyLU6dL0JiB9Vl1ajir7bI6rN1v5EKObP1RHwWHXRbr7ery +jJnjWXRqV2mhDjBseAEIVhpYy6UNWLSBUZ7njiPV/wQaBr2Stq8ydfLKeZpmME7g +y2xw8uc064qfXIAHbhRq82yAN8+YY7CUKBvJquiiRVDffvbYWhrS4fIIsBNywoBZ +PGoKUhE9RlR5nRyWvQmeKsBmM9bbzEIW4A5GHO5+6Fb2g1cbLx1poCZRta2oE/JJ +qusChTZMXdGmEapT8w+sLqyZYtyPn+W8MuX5N9oZppYWIzUDlxHn6yqQPOj98aKu +rsIu+aECgYEA+x047lp1C3R5dByfk9JwxTayTgfyrnCElV60+KVYxwJkZniMkBk7 +ncy0WtcOBQiwNYLCHMpx9IZkSlWbW0C3e2CgGmLahpi8yhBOzPiUinLY/V5xzbxK +ojTkf3pYZo1viJG9MTUI1xEr9anZHM9GmqVnk8gJdi2a64wXGyvXxiUCgYEAzYH5 +8oRuvWgT+4KXql8EUX57YQEDIpeqp4DJHMk5X5OWYZ8by5kyRNDLSvqf5kWnkRpK +VMXuKdpVJXb3OWBvzymzxB/pBfTFFaBybsMQZUKpXfucRSfeQ0T6x1VVLozb6mNH +T7q4nms1LiUidp7M09XtfwJYMlLu/prZ1yN+jcMCgYEA78e4nAiuKNEARDosumdA +nWAcJFx8g8sXHtY/MgoY2nbTTfGgLtyZS5WzReaCEZZ5Q69nETzSUW6eh0h1P05t +pZbfajKofcuMwdmOlTRsCkOeJVmwi4ZXMcoVwhAeJ1a4gIzBPiJpHYvdEQgtM9BM +l9CHNdrWBg2IF5E+YwibUi0CgYBMKtpa2l648LRHSbWwvZq6IajU4S0qSxBDGOZx +Ntt+4xKfh/sjUNpiywgt+An/rN1YWGgoV1vYQ0W/pwImT+ng3FH2ZOVXActyIo+H +IeEXxsdDQBhBQW+Neyl/a88we6CelME/ebMndBC306ecU2sTMHzf0BykOjy+POJ0 +bIFhRQKBgBjfK/s6mbif311d4kEzT0aGIPK0STfD5FKDCazdZ3F+/aS8iorEVGou +T7EwvdJvb13N9CpQGvN1nbSUc+rI3MY/Fa0m4FxE1A0FnS3AAVISgY3M4k2pjbIa +3LfQHtOPDKX0gaYFqf99w1Xwtib4E5PFaRcdUuuc1o8Xv315uh8p +-----END RSA PRIVATE KEY----- \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key b/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key new file mode 100644 index 00000000..003014c3 --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key @@ -0,0 +1,9 @@ +-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyZXlfd5yqChtTH91N76V +okquRu2r1EwNDUjA0GAygrPzCpPbYokasxzs+60Do/lyTIgd7nRzudAzHnujIPr8 +GOPIlPlOKT8HuL7xQEN6gmUtz33iDhK97zK7zOFEmvS8kYPwFAjQ03YKv+3T9b/D +brBZWy2Vx4Wuxf6mZBggKQfwHUuJxXDv79NenZarUtC5iFEhJ85ovwjW7yMkcflh +Ugkf1o/GIR5RKoNPttMXhKYZ4hTlLglMm1FgRR63pvYoy9Eq644a9x2mbGelO3Hn +GbkaFo0HxiKbFW1vplHzixYCyjc15pvtBxw/x26p8+lNthuxzaX5HaFMPGs10rRP +LwIDAQAB +-----END PUBLIC KEY----- \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/1.0/manifest.json b/oat-sa/bundle-lti1p3/1.0/manifest.json new file mode 100644 index 00000000..22dba465 --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/manifest.json @@ -0,0 +1,14 @@ +{ + "aliases": [ + "lti1p3" + ], + "bundles": { + "OAT\\Bundle\\Lti1p3Bundle\\Lti1p3Bundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LTI1P3_SERVICE_ENCRYPTION_KEY": "%generate(secret)%" + } +} \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/1.0/post-install.txt b/oat-sa/bundle-lti1p3/1.0/post-install.txt new file mode 100644 index 00000000..cfb6fd5d --- /dev/null +++ b/oat-sa/bundle-lti1p3/1.0/post-install.txt @@ -0,0 +1,11 @@ + + Next: LTI 1.3 bundle configuration + + + * Configure your keys, platform, tools and registrations in config/packages/lti1p3.yaml + + * Configure the platform and tools automated routes in config/routes/lti1p3.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 + + * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT use them in production. \ No newline at end of file From 7f798a4dee15851da758211739c92c5d0d4836d6 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Tue, 12 May 2020 13:10:24 +0200 Subject: [PATCH 246/394] Fixes --- .../bundle-lti1p3/1.0/config/packages/lti1p3.yaml | 13 +++++++------ oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml | 2 +- oat-sa/bundle-lti1p3/1.0/manifest.json | 5 +---- oat-sa/bundle-lti1p3/1.0/post-install.txt | 2 +- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml index ed25b59a..7d40ba9b 100644 --- a/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml +++ b/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml @@ -4,12 +4,12 @@ lti1p3: key_set_name: "platformSet" public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" - private_key_passphrase: ~ + private_key_passphrase: null toolKey: key_set_name: "toolSet" public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" - private_key_passphrase: ~ + private_key_passphrase: null platforms: localPlatform: name: "Local platform" @@ -21,8 +21,8 @@ lti1p3: name: "Local tool" audience: "http://localhost/tool" oidc_login_initiation_url: "http://localhost/lti1p3/oidc/login-initiation" - launch_url: ~ - deep_link_launch_url: ~ + launch_url: "http://localhost/lti1p3/tool/launch" + deep_link_launch_url: null registrations: local: client_id: "client_id" @@ -32,5 +32,6 @@ lti1p3: - "deploymentId1" platform_key_chain: "platformKey" tool_key_chain: "toolKey" - platform_jwks_url: ~ - tool_jwks_url: ~ + platform_jwks_url: null + tool_jwks_url: null + diff --git a/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml index 42f24119..c893970a 100644 --- a/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml +++ b/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml @@ -8,4 +8,4 @@ lti1p3_message_tool: resource: '@Lti1p3Bundle/Resources/config/routing/message/tool.yaml' lti1p3_service_platform: - resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' \ No newline at end of file + resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' diff --git a/oat-sa/bundle-lti1p3/1.0/manifest.json b/oat-sa/bundle-lti1p3/1.0/manifest.json index 22dba465..adfed5a2 100644 --- a/oat-sa/bundle-lti1p3/1.0/manifest.json +++ b/oat-sa/bundle-lti1p3/1.0/manifest.json @@ -1,7 +1,4 @@ { - "aliases": [ - "lti1p3" - ], "bundles": { "OAT\\Bundle\\Lti1p3Bundle\\Lti1p3Bundle": [ "all" ] }, @@ -11,4 +8,4 @@ "env": { "LTI1P3_SERVICE_ENCRYPTION_KEY": "%generate(secret)%" } -} \ No newline at end of file +} diff --git a/oat-sa/bundle-lti1p3/1.0/post-install.txt b/oat-sa/bundle-lti1p3/1.0/post-install.txt index cfb6fd5d..3f3f9f12 100644 --- a/oat-sa/bundle-lti1p3/1.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/1.0/post-install.txt @@ -8,4 +8,4 @@ * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 - * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT use them in production. \ No newline at end of file + * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT use them in production. From 654f1dc3ea22d265048f81f42b41e1ed9779d302 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 13:55:27 +0200 Subject: [PATCH 247/394] Create post-install.txt --- mael/intervention-image-bundle/post-install.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/intervention-image-bundle/post-install.txt diff --git a/mael/intervention-image-bundle/post-install.txt b/mael/intervention-image-bundle/post-install.txt new file mode 100644 index 00000000..97168466 --- /dev/null +++ b/mael/intervention-image-bundle/post-install.txt @@ -0,0 +1,3 @@ + Next for MaelInterventionImageBundle + * Edit mael_intervention_image.yaml to configure the driver in config/packages + * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md From 65a3100bbc4e49eae5995c38f8515f08910a0f7a Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 13:55:51 +0200 Subject: [PATCH 248/394] Create post-install.txt --- mael/intervention-image-bundle/1.0/post-install.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/intervention-image-bundle/1.0/post-install.txt diff --git a/mael/intervention-image-bundle/1.0/post-install.txt b/mael/intervention-image-bundle/1.0/post-install.txt new file mode 100644 index 00000000..97168466 --- /dev/null +++ b/mael/intervention-image-bundle/1.0/post-install.txt @@ -0,0 +1,3 @@ + Next for MaelInterventionImageBundle + * Edit mael_intervention_image.yaml to configure the driver in config/packages + * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md From 65409be2b9c401bd94118f2097dd6e03257b144b Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 13:56:01 +0200 Subject: [PATCH 249/394] Delete post-install.txt --- mael/intervention-image-bundle/post-install.txt | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 mael/intervention-image-bundle/post-install.txt diff --git a/mael/intervention-image-bundle/post-install.txt b/mael/intervention-image-bundle/post-install.txt deleted file mode 100644 index 97168466..00000000 --- a/mael/intervention-image-bundle/post-install.txt +++ /dev/null @@ -1,3 +0,0 @@ - Next for MaelInterventionImageBundle - * Edit mael_intervention_image.yaml to configure the driver in config/packages - * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md From 285eaab3856ec40d5fffb5e76e415c85732688ff Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 13:57:21 +0200 Subject: [PATCH 250/394] Create manifest.json --- mael/intervention-image-bundle/1.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mael/intervention-image-bundle/1.0/manifest.json diff --git a/mael/intervention-image-bundle/1.0/manifest.json b/mael/intervention-image-bundle/1.0/manifest.json new file mode 100644 index 00000000..adfddce3 --- /dev/null +++ b/mael/intervention-image-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Mael\\InterventionImageBundle\\MaelInterventionImageBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 4e084e3b73e0cc68b7ed1940aff1efb32112f6b3 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 13:58:19 +0200 Subject: [PATCH 251/394] Create mael_intervention_image.yaml --- .../1.0/config/packages/mael_intervention_image.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml diff --git a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml new file mode 100644 index 00000000..4ed3a109 --- /dev/null +++ b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml @@ -0,0 +1,2 @@ +mael_intervention_image: + driver: gd ## gd or imagick - Default gd From 609eedb6704f3870a0e2dcbc41ab7557752bbf91 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 14:02:15 +0200 Subject: [PATCH 252/394] Update mael_intervention_image.yaml --- .../1.0/config/packages/mael_intervention_image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml index 4ed3a109..20fd5e7f 100644 --- a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml +++ b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml @@ -1,2 +1,2 @@ mael_intervention_image: - driver: gd ## gd or imagick - Default gd + driver: gd ## gd or imagick - Default gd From fd0e47b8f9f39deff9aac9e7bfc88dd775122020 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 14:03:47 +0200 Subject: [PATCH 253/394] Update mael_intervention_image.yaml --- .../1.0/config/packages/mael_intervention_image.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml index 20fd5e7f..63f70beb 100644 --- a/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml +++ b/mael/intervention-image-bundle/1.0/config/packages/mael_intervention_image.yaml @@ -1,2 +1,2 @@ mael_intervention_image: - driver: gd ## gd or imagick - Default gd + driver: gd ## gd or imagick - Default is gd From 297b28b0dac7c1a16124d908792247a709460dcc Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 14:10:41 +0200 Subject: [PATCH 254/394] Update post-install.txt --- mael/intervention-image-bundle/1.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mael/intervention-image-bundle/1.0/post-install.txt b/mael/intervention-image-bundle/1.0/post-install.txt index 97168466..85b3f2cd 100644 --- a/mael/intervention-image-bundle/1.0/post-install.txt +++ b/mael/intervention-image-bundle/1.0/post-install.txt @@ -1,3 +1,3 @@ Next for MaelInterventionImageBundle - * Edit mael_intervention_image.yaml to configure the driver in config/packages + * Edit mael_intervention_image.yaml to configure the driver in config/packages * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md From 73c92798c1108da4529709bffe954001a52d3700 Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 15 May 2020 14:21:37 +0200 Subject: [PATCH 255/394] Update post-install.txt --- mael/intervention-image-bundle/1.0/post-install.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/mael/intervention-image-bundle/1.0/post-install.txt b/mael/intervention-image-bundle/1.0/post-install.txt index 85b3f2cd..28f04df2 100644 --- a/mael/intervention-image-bundle/1.0/post-install.txt +++ b/mael/intervention-image-bundle/1.0/post-install.txt @@ -1,3 +1,4 @@ Next for MaelInterventionImageBundle * Edit mael_intervention_image.yaml to configure the driver in config/packages * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md + From f05b27834f986e5c6a718f02d7531eb7a92206a0 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 10:51:49 +0200 Subject: [PATCH 256/394] Fixes --- oat-sa/bundle-lti1p3/1.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oat-sa/bundle-lti1p3/1.0/post-install.txt b/oat-sa/bundle-lti1p3/1.0/post-install.txt index 3f3f9f12..d3e74ba0 100644 --- a/oat-sa/bundle-lti1p3/1.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/1.0/post-install.txt @@ -8,4 +8,4 @@ * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 - * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT use them in production. + * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. From 8870854eac56c8e83982d5a57dedd2f79957e564 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 10:54:32 +0200 Subject: [PATCH 257/394] Fixes --- oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/packages/lti1p3.yaml | 0 oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/routes/lti1p3.yaml | 0 oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/secrets/dev/private.key | 0 oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/secrets/dev/public.key | 0 oat-sa/bundle-lti1p3/{1.0 => 1.1}/manifest.json | 0 oat-sa/bundle-lti1p3/{1.0 => 1.1}/post-install.txt | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/packages/lti1p3.yaml (100%) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/routes/lti1p3.yaml (100%) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/secrets/dev/private.key (100%) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/config/secrets/dev/public.key (100%) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/manifest.json (100%) rename oat-sa/bundle-lti1p3/{1.0 => 1.1}/post-install.txt (100%) diff --git a/oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.1/config/packages/lti1p3.yaml similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/config/packages/lti1p3.yaml rename to oat-sa/bundle-lti1p3/1.1/config/packages/lti1p3.yaml diff --git a/oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/1.1/config/routes/lti1p3.yaml similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/config/routes/lti1p3.yaml rename to oat-sa/bundle-lti1p3/1.1/config/routes/lti1p3.yaml diff --git a/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key b/oat-sa/bundle-lti1p3/1.1/config/secrets/dev/private.key similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/config/secrets/dev/private.key rename to oat-sa/bundle-lti1p3/1.1/config/secrets/dev/private.key diff --git a/oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key b/oat-sa/bundle-lti1p3/1.1/config/secrets/dev/public.key similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/config/secrets/dev/public.key rename to oat-sa/bundle-lti1p3/1.1/config/secrets/dev/public.key diff --git a/oat-sa/bundle-lti1p3/1.0/manifest.json b/oat-sa/bundle-lti1p3/1.1/manifest.json similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/manifest.json rename to oat-sa/bundle-lti1p3/1.1/manifest.json diff --git a/oat-sa/bundle-lti1p3/1.0/post-install.txt b/oat-sa/bundle-lti1p3/1.1/post-install.txt similarity index 100% rename from oat-sa/bundle-lti1p3/1.0/post-install.txt rename to oat-sa/bundle-lti1p3/1.1/post-install.txt From acdb244ed7ee91913d469367642f68c2a1d58e34 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 10:58:38 +0200 Subject: [PATCH 258/394] Fixes --- oat-sa/bundle-lti1p3/1.1/post-install.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oat-sa/bundle-lti1p3/1.1/post-install.txt b/oat-sa/bundle-lti1p3/1.1/post-install.txt index d3e74ba0..1b5ed35f 100644 --- a/oat-sa/bundle-lti1p3/1.1/post-install.txt +++ b/oat-sa/bundle-lti1p3/1.1/post-install.txt @@ -2,10 +2,10 @@ Next: LTI 1.3 bundle configuration - * Configure your keys, platform, tools and registrations in config/packages/lti1p3.yaml + * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml - * Configure the platform and tools automated routes in config/routes/lti1p3.yaml + * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 - * IMPORTANT The keys generated in the config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. + * IMPORTANT The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. From af73e5b7e2aaa121e2316698e0db9f389e6da2ea Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 11:25:06 +0200 Subject: [PATCH 259/394] Fixes --- oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/packages/lti1p3.yaml | 0 oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/routes/lti1p3.yaml | 0 oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/secrets/dev/private.key | 0 oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/secrets/dev/public.key | 0 oat-sa/bundle-lti1p3/{1.1 => 2.0}/manifest.json | 0 oat-sa/bundle-lti1p3/{1.1 => 2.0}/post-install.txt | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/packages/lti1p3.yaml (100%) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/routes/lti1p3.yaml (100%) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/secrets/dev/private.key (100%) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/config/secrets/dev/public.key (100%) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/manifest.json (100%) rename oat-sa/bundle-lti1p3/{1.1 => 2.0}/post-install.txt (100%) diff --git a/oat-sa/bundle-lti1p3/1.1/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/2.0/config/packages/lti1p3.yaml similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/config/packages/lti1p3.yaml rename to oat-sa/bundle-lti1p3/2.0/config/packages/lti1p3.yaml diff --git a/oat-sa/bundle-lti1p3/1.1/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/2.0/config/routes/lti1p3.yaml similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/config/routes/lti1p3.yaml rename to oat-sa/bundle-lti1p3/2.0/config/routes/lti1p3.yaml diff --git a/oat-sa/bundle-lti1p3/1.1/config/secrets/dev/private.key b/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/config/secrets/dev/private.key rename to oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key diff --git a/oat-sa/bundle-lti1p3/1.1/config/secrets/dev/public.key b/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/config/secrets/dev/public.key rename to oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key diff --git a/oat-sa/bundle-lti1p3/1.1/manifest.json b/oat-sa/bundle-lti1p3/2.0/manifest.json similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/manifest.json rename to oat-sa/bundle-lti1p3/2.0/manifest.json diff --git a/oat-sa/bundle-lti1p3/1.1/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt similarity index 100% rename from oat-sa/bundle-lti1p3/1.1/post-install.txt rename to oat-sa/bundle-lti1p3/2.0/post-install.txt From 59b65709c4b37ae5418c7107e214e1ac08eaed6e Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 11:28:26 +0200 Subject: [PATCH 260/394] Fixes --- oat-sa/bundle-lti1p3/2.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt index 1b5ed35f..8079f125 100644 --- a/oat-sa/bundle-lti1p3/2.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -8,4 +8,4 @@ * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 - * IMPORTANT The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. + * !! IMPORTANT !! The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION!. From c5df55afcd6840c28b42ad4702f17c1238768a5a Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 11:45:33 +0200 Subject: [PATCH 261/394] Fixes --- oat-sa/bundle-lti1p3/2.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt index 8079f125..6ee3a298 100644 --- a/oat-sa/bundle-lti1p3/2.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -8,4 +8,4 @@ * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 - * !! IMPORTANT !! The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION!. + * !! IMPORTANT !! The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. From 9b26a686afff5ee8e996bb6539e4c2f7f0df8749 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 14:42:43 +0200 Subject: [PATCH 262/394] CR fixes --- oat-sa/bundle-lti1p3/2.0/post-install.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt index 6ee3a298..c0990143 100644 --- a/oat-sa/bundle-lti1p3/2.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -2,10 +2,10 @@ Next: LTI 1.3 bundle configuration - * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml + * Create development keys: mkdir -p config/secrets/dev && openssl genrsa -out config/secrets/dev/private.key 2048 && openssl rsa -in config/secrets/dev/private.key -outform PEM -pubout -out config/secrets/dev/public.key - * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml + * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml - * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 + * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml - * !! IMPORTANT !! The keys generated in config/secrets/dev/ folder are default development keys, DO NOT USE THEM IN PRODUCTION. + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 From 963aa8448394eb8bc0e9ab426cfc9a7c75c1ddae Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Mon, 18 May 2020 14:45:09 +0200 Subject: [PATCH 263/394] CR fixes --- .../2.0/config/secrets/dev/private.key | 27 ------------------- .../2.0/config/secrets/dev/public.key | 9 ------- oat-sa/bundle-lti1p3/2.0/post-install.txt | 2 +- 3 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key delete mode 100644 oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key diff --git a/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key b/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key deleted file mode 100644 index c95b2420..00000000 --- a/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/private.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAyZXlfd5yqChtTH91N76VokquRu2r1EwNDUjA0GAygrPzCpPb -Yokasxzs+60Do/lyTIgd7nRzudAzHnujIPr8GOPIlPlOKT8HuL7xQEN6gmUtz33i -DhK97zK7zOFEmvS8kYPwFAjQ03YKv+3T9b/DbrBZWy2Vx4Wuxf6mZBggKQfwHUuJ -xXDv79NenZarUtC5iFEhJ85ovwjW7yMkcflhUgkf1o/GIR5RKoNPttMXhKYZ4hTl -LglMm1FgRR63pvYoy9Eq644a9x2mbGelO3HnGbkaFo0HxiKbFW1vplHzixYCyjc1 -5pvtBxw/x26p8+lNthuxzaX5HaFMPGs10rRPLwIDAQABAoIBAEFrF7KlQeg4VmAA -7PVOMBkeyzfRYXXfyEyLU6dL0JiB9Vl1ajir7bI6rN1v5EKObP1RHwWHXRbr7ery -jJnjWXRqV2mhDjBseAEIVhpYy6UNWLSBUZ7njiPV/wQaBr2Stq8ydfLKeZpmME7g -y2xw8uc064qfXIAHbhRq82yAN8+YY7CUKBvJquiiRVDffvbYWhrS4fIIsBNywoBZ -PGoKUhE9RlR5nRyWvQmeKsBmM9bbzEIW4A5GHO5+6Fb2g1cbLx1poCZRta2oE/JJ -qusChTZMXdGmEapT8w+sLqyZYtyPn+W8MuX5N9oZppYWIzUDlxHn6yqQPOj98aKu -rsIu+aECgYEA+x047lp1C3R5dByfk9JwxTayTgfyrnCElV60+KVYxwJkZniMkBk7 -ncy0WtcOBQiwNYLCHMpx9IZkSlWbW0C3e2CgGmLahpi8yhBOzPiUinLY/V5xzbxK -ojTkf3pYZo1viJG9MTUI1xEr9anZHM9GmqVnk8gJdi2a64wXGyvXxiUCgYEAzYH5 -8oRuvWgT+4KXql8EUX57YQEDIpeqp4DJHMk5X5OWYZ8by5kyRNDLSvqf5kWnkRpK -VMXuKdpVJXb3OWBvzymzxB/pBfTFFaBybsMQZUKpXfucRSfeQ0T6x1VVLozb6mNH -T7q4nms1LiUidp7M09XtfwJYMlLu/prZ1yN+jcMCgYEA78e4nAiuKNEARDosumdA -nWAcJFx8g8sXHtY/MgoY2nbTTfGgLtyZS5WzReaCEZZ5Q69nETzSUW6eh0h1P05t -pZbfajKofcuMwdmOlTRsCkOeJVmwi4ZXMcoVwhAeJ1a4gIzBPiJpHYvdEQgtM9BM -l9CHNdrWBg2IF5E+YwibUi0CgYBMKtpa2l648LRHSbWwvZq6IajU4S0qSxBDGOZx -Ntt+4xKfh/sjUNpiywgt+An/rN1YWGgoV1vYQ0W/pwImT+ng3FH2ZOVXActyIo+H -IeEXxsdDQBhBQW+Neyl/a88we6CelME/ebMndBC306ecU2sTMHzf0BykOjy+POJ0 -bIFhRQKBgBjfK/s6mbif311d4kEzT0aGIPK0STfD5FKDCazdZ3F+/aS8iorEVGou -T7EwvdJvb13N9CpQGvN1nbSUc+rI3MY/Fa0m4FxE1A0FnS3AAVISgY3M4k2pjbIa -3LfQHtOPDKX0gaYFqf99w1Xwtib4E5PFaRcdUuuc1o8Xv315uh8p ------END RSA PRIVATE KEY----- \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key b/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key deleted file mode 100644 index 003014c3..00000000 --- a/oat-sa/bundle-lti1p3/2.0/config/secrets/dev/public.key +++ /dev/null @@ -1,9 +0,0 @@ ------BEGIN PUBLIC KEY----- -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyZXlfd5yqChtTH91N76V -okquRu2r1EwNDUjA0GAygrPzCpPbYokasxzs+60Do/lyTIgd7nRzudAzHnujIPr8 -GOPIlPlOKT8HuL7xQEN6gmUtz33iDhK97zK7zOFEmvS8kYPwFAjQ03YKv+3T9b/D -brBZWy2Vx4Wuxf6mZBggKQfwHUuJxXDv79NenZarUtC5iFEhJ85ovwjW7yMkcflh -Ugkf1o/GIR5RKoNPttMXhKYZ4hTlLglMm1FgRR63pvYoy9Eq644a9x2mbGelO3Hn -GbkaFo0HxiKbFW1vplHzixYCyjc15pvtBxw/x26p8+lNthuxzaX5HaFMPGs10rRP -LwIDAQAB ------END PUBLIC KEY----- \ No newline at end of file diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt index c0990143..30718974 100644 --- a/oat-sa/bundle-lti1p3/2.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -8,4 +8,4 @@ * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml - * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 From 42ae75aee437cf785f83193793367858f0ad43a7 Mon Sep 17 00:00:00 2001 From: zorn-v Date: Thu, 21 May 2020 00:39:26 +1000 Subject: [PATCH 264/394] Add elfinder:install to composer-scripts This allow install/update elfinder assets on install/update packages --- helios-ag/fm-elfinder-bundle/10.0/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helios-ag/fm-elfinder-bundle/10.0/manifest.json b/helios-ag/fm-elfinder-bundle/10.0/manifest.json index 70b77d43..60a33565 100644 --- a/helios-ag/fm-elfinder-bundle/10.0/manifest.json +++ b/helios-ag/fm-elfinder-bundle/10.0/manifest.json @@ -4,5 +4,8 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "composer-scripts": { + "elfinder:install": "symfony-cmd" } } From ba348a267273078591ea64cb09b72bee8b15b0c7 Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:23:38 +0200 Subject: [PATCH 265/394] Upgrade to 1.0 --- mael/recaptcha-bundle/1.0/post-install.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mael/recaptcha-bundle/1.0/post-install.txt diff --git a/mael/recaptcha-bundle/1.0/post-install.txt b/mael/recaptcha-bundle/1.0/post-install.txt new file mode 100644 index 00000000..4bd2d6e5 --- /dev/null +++ b/mael/recaptcha-bundle/1.0/post-install.txt @@ -0,0 +1,4 @@ + Next for MaelRecaptchaBundle + * Edit your .env file + * Change MAEL_RECAPTCHA_KEY by your public key and MAEL_RECAPTCHA_SECRET by your secret key in your .env file, + * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From b563855b493370ef82ee407a8ac9aedf235234e9 Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:24:20 +0200 Subject: [PATCH 266/394] Upgrade to 1.0 --- mael/recaptcha-bundle/1.0/manifest.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 mael/recaptcha-bundle/1.0/manifest.json diff --git a/mael/recaptcha-bundle/1.0/manifest.json b/mael/recaptcha-bundle/1.0/manifest.json new file mode 100644 index 00000000..4b091f6a --- /dev/null +++ b/mael/recaptcha-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "MAEL_RECAPTCHA_KEY": "YOUR_RECAPTCHA_KEY", + "MAEL_RECAPTCHA_SECRET": "YOUR_RECAPTCHA_SECRET" + } +} From cca6d5ca0c3e8b7c2dbda65732f60ab030fd4bae Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:25:06 +0200 Subject: [PATCH 267/394] Upgrade to 1.0 --- mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml diff --git a/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml new file mode 100644 index 00000000..db115dd7 --- /dev/null +++ b/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml @@ -0,0 +1,3 @@ +mael_recaptcha: + key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' + secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' From 8c7e8a69bbe7523a07a1368e0f0c1b9faa008dba Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:29:14 +0200 Subject: [PATCH 268/394] Delete post-install.txt --- mael/recaptcha-bundle/1.0/post-install.txt | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 mael/recaptcha-bundle/1.0/post-install.txt diff --git a/mael/recaptcha-bundle/1.0/post-install.txt b/mael/recaptcha-bundle/1.0/post-install.txt deleted file mode 100644 index 4bd2d6e5..00000000 --- a/mael/recaptcha-bundle/1.0/post-install.txt +++ /dev/null @@ -1,4 +0,0 @@ - Next for MaelRecaptchaBundle - * Edit your .env file - * Change MAEL_RECAPTCHA_KEY by your public key and MAEL_RECAPTCHA_SECRET by your secret key in your .env file, - * Readdocumentation at https://github.com/Mael-91/MaelRecaptchaBundle/blob/master/README.md From 09e1c61f01c7f902e2b2326cf41ac8745602116c Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:29:22 +0200 Subject: [PATCH 269/394] Delete manifest.json --- mael/recaptcha-bundle/1.0/manifest.json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 mael/recaptcha-bundle/1.0/manifest.json diff --git a/mael/recaptcha-bundle/1.0/manifest.json b/mael/recaptcha-bundle/1.0/manifest.json deleted file mode 100644 index 4b091f6a..00000000 --- a/mael/recaptcha-bundle/1.0/manifest.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "bundles": { - "Mael\\MaelRecaptchaBundle\\MaelRecaptchaBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - }, - "env": { - "MAEL_RECAPTCHA_KEY": "YOUR_RECAPTCHA_KEY", - "MAEL_RECAPTCHA_SECRET": "YOUR_RECAPTCHA_SECRET" - } -} From 96167b15d069b33443f6239ad760382372272822 Mon Sep 17 00:00:00 2001 From: Mael Date: Sun, 24 May 2020 00:29:30 +0200 Subject: [PATCH 270/394] Delete mael_recaptcha.yaml --- mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml diff --git a/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml b/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml deleted file mode 100644 index db115dd7..00000000 --- a/mael/recaptcha-bundle/1.0/config/packages/mael_recaptcha.yaml +++ /dev/null @@ -1,3 +0,0 @@ -mael_recaptcha: - key: '%env(resolve:MAEL_RECAPTCHA_KEY)%' - secret: '%env(resolve:MAEL_RECAPTCHA_SECRET)%' From 33441d6602b9f3c8749870911277913141197335 Mon Sep 17 00:00:00 2001 From: wajdi Date: Sun, 24 May 2020 04:27:05 +0300 Subject: [PATCH 271/394] Add recipe for Jurry RabbitMQ Symfony Bundle --- .../1.0/config/packages/jurry_rabbitmq.yaml | 15 +++++++++++++++ jurry/amqp-symfony-bundle/1.0/manifest.json | 11 +++++++++++ 2 files changed, 26 insertions(+) create mode 100644 jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml create mode 100644 jurry/amqp-symfony-bundle/1.0/manifest.json diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml new file mode 100644 index 00000000..438d6429 --- /dev/null +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -0,0 +1,15 @@ +amqp_handler: +# You can define connection in both ways: as array or as a string +# connection: 'tcp://guest:guest@172.18.0.01:5672' + connection: + host: 172.18.0.1 + port: 5672 + user: guest + password: guest + queues_properties: + sync_queue: + name: stores_sync + message_ttl: 10000 # 10 seconds + async_queue: + name: stores_async + message_ttl: 10000 # 10 seconds diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json new file mode 100644 index 00000000..7dbd648d --- /dev/null +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Jurry\\RabbitMQ\\AmqpHandlerBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "gitignore": [ + ".idea/" + ] +} From ee5af59ebf9199daa5d1cb0807a6481d3d5b67e1 Mon Sep 17 00:00:00 2001 From: wajdi Date: Sun, 24 May 2020 22:05:54 +0300 Subject: [PATCH 272/394] Code review --- jurry/amqp-symfony-bundle/1.0/manifest.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 7dbd648d..740a5175 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -4,8 +4,5 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - }, - "gitignore": [ - ".idea/" - ] + } } From eebbdd991e819a2d68b0b964d87d7c52c3e0eb0c Mon Sep 17 00:00:00 2001 From: Nicolas MELONI Date: Mon, 18 May 2020 11:28:26 +0200 Subject: [PATCH 273/394] added payplug/sylius-payplug-plugin --- .../0.2/config/packages/sylius_payplug.yaml | 3 +++ payplug/sylius-payplug-plugin/0.2/manifest.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml create mode 100644 payplug/sylius-payplug-plugin/0.2/manifest.json diff --git a/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml b/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml new file mode 100644 index 00000000..82462ec0 --- /dev/null +++ b/payplug/sylius-payplug-plugin/0.2/config/packages/sylius_payplug.yaml @@ -0,0 +1,3 @@ +imports: + - { resource: "@PayPlugSyliusPayPlugPlugin/Resources/config/config.yml" } + - { resource: "@PayPlugSyliusPayPlugPlugin/Resources/config/services.xml" } diff --git a/payplug/sylius-payplug-plugin/0.2/manifest.json b/payplug/sylius-payplug-plugin/0.2/manifest.json new file mode 100644 index 00000000..5e36954e --- /dev/null +++ b/payplug/sylius-payplug-plugin/0.2/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "PayPlug\\SyliusPayPlugPlugin\\PayPlugSyliusPayPlugPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 3ea6741c4c0829f841446f1e26a8b886e124ed76 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 25 May 2020 13:57:46 +0300 Subject: [PATCH 274/394] public directory can be changed in project --- liip/imagine-bundle/1.8/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liip/imagine-bundle/1.8/manifest.json b/liip/imagine-bundle/1.8/manifest.json index e5757aba..50f30f68 100644 --- a/liip/imagine-bundle/1.8/manifest.json +++ b/liip/imagine-bundle/1.8/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "gitignore": [ - "/public/media/cache/" + "/%PUBLIC_DIR%/media/cache/" ] } From 29f3d01d35b55283b8ab99f3a33c9419423afe82 Mon Sep 17 00:00:00 2001 From: Peter Gribanov Date: Mon, 25 May 2020 14:00:55 +0300 Subject: [PATCH 275/394] add PUBLIC_DIR option --- liip/imagine-bundle/1.8/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/liip/imagine-bundle/1.8/manifest.json b/liip/imagine-bundle/1.8/manifest.json index 50f30f68..4d51d91a 100644 --- a/liip/imagine-bundle/1.8/manifest.json +++ b/liip/imagine-bundle/1.8/manifest.json @@ -3,7 +3,8 @@ "Liip\\ImagineBundle\\LiipImagineBundle": ["all"] }, "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" + "config/": "%CONFIG_DIR%/", + "public/": "%PUBLIC_DIR%/" }, "gitignore": [ "/%PUBLIC_DIR%/media/cache/" From e1bae084c90e081ad805b75dbbc7a8774f3faf1a Mon Sep 17 00:00:00 2001 From: Clemens Krack Date: Tue, 26 May 2020 00:55:36 +0200 Subject: [PATCH 276/394] feat(optimus): add recipe for ckrack/optimus-bundle --- .../0.1.0/config/packages/ckrack_optimus.yaml | 13 +++++++++++++ ckrack/optimus-bundle/0.1.0/manifest.json | 14 ++++++++++++++ ckrack/optimus-bundle/0.1.0/post-install.txt | 8 ++++++++ 3 files changed, 35 insertions(+) create mode 100644 ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml create mode 100644 ckrack/optimus-bundle/0.1.0/manifest.json create mode 100644 ckrack/optimus-bundle/0.1.0/post-install.txt diff --git a/ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml b/ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml new file mode 100644 index 00000000..f791ac29 --- /dev/null +++ b/ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml @@ -0,0 +1,13 @@ +ckrack_optimus: + + # Large prime number lower than 2147483647 + prime: "%env(int:OPTIMUS_PRIME)%" + + # The inverse prime so that (PRIME * INVERSE) & MAXID == 1 + inverse: "%env(int:OPTIMUS_INVERSE)%" + + # A large random integer lower than 2147483647 + random: "%env(int:OPTIMUS_RANDOM)%" + + # if set to true, param converter will continue with the next available param converters + passthrough: true diff --git a/ckrack/optimus-bundle/0.1.0/manifest.json b/ckrack/optimus-bundle/0.1.0/manifest.json new file mode 100644 index 00000000..6eb85c61 --- /dev/null +++ b/ckrack/optimus-bundle/0.1.0/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "Ckrack\\OptimusBundle\\CkrackOptimusBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "Replace these env vars with the output of `php vendor/bin/optimus spark -f env`", + "OPTIMUS_PRIME": 3, + "OPTIMUS_INVERSE": 715827883, + "OPTIMUS_RANDOM": 1592469642 + } +} diff --git a/ckrack/optimus-bundle/0.1.0/post-install.txt b/ckrack/optimus-bundle/0.1.0/post-install.txt new file mode 100644 index 00000000..dfb64d82 --- /dev/null +++ b/ckrack/optimus-bundle/0.1.0/post-install.txt @@ -0,0 +1,8 @@ + + Next: OptimusBundle Configuration + + + * Generate your spark numbers by running php vendor/bin/optimus spark -f env + and configure them in your .env + +Documentation: https://github.com/jenssegers/optimus From ac4907f0a7d1d1ee9d9dc4d90940aa9569768a0f Mon Sep 17 00:00:00 2001 From: Clemens Krack Date: Tue, 26 May 2020 01:02:20 +0200 Subject: [PATCH 277/394] docs(post-install): add bundle doc link --- ckrack/optimus-bundle/0.1.0/post-install.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ckrack/optimus-bundle/0.1.0/post-install.txt b/ckrack/optimus-bundle/0.1.0/post-install.txt index dfb64d82..f5fbdf85 100644 --- a/ckrack/optimus-bundle/0.1.0/post-install.txt +++ b/ckrack/optimus-bundle/0.1.0/post-install.txt @@ -5,4 +5,6 @@ * Generate your spark numbers by running php vendor/bin/optimus spark -f env and configure them in your .env -Documentation: https://github.com/jenssegers/optimus +Optimus Documentation: https://github.com/jenssegers/optimus +Bundle Documentation: https://github.com/ckrack/optimus-bundle + From 2846a93ab0ee2c5dc59db119215ab1604ed6363c Mon Sep 17 00:00:00 2001 From: Clemens Krack Date: Tue, 26 May 2020 01:02:39 +0200 Subject: [PATCH 278/394] fix(manifest): use strings for env --- ckrack/optimus-bundle/0.1.0/manifest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ckrack/optimus-bundle/0.1.0/manifest.json b/ckrack/optimus-bundle/0.1.0/manifest.json index 6eb85c61..54d50acc 100644 --- a/ckrack/optimus-bundle/0.1.0/manifest.json +++ b/ckrack/optimus-bundle/0.1.0/manifest.json @@ -7,8 +7,8 @@ }, "env": { "#1": "Replace these env vars with the output of `php vendor/bin/optimus spark -f env`", - "OPTIMUS_PRIME": 3, - "OPTIMUS_INVERSE": 715827883, - "OPTIMUS_RANDOM": 1592469642 + "OPTIMUS_PRIME": "3", + "OPTIMUS_INVERSE": "715827883", + "OPTIMUS_RANDOM": "1592469642" } } From 686c5a9f7fff7e0a95e9aa79c1b7fbe2cdbad07f Mon Sep 17 00:00:00 2001 From: Clemens Krack Date: Tue, 26 May 2020 01:19:52 +0200 Subject: [PATCH 279/394] chore(): fix version --- .../{0.1.0 => 0.1}/config/packages/ckrack_optimus.yaml | 0 ckrack/optimus-bundle/{0.1.0 => 0.1}/manifest.json | 0 ckrack/optimus-bundle/{0.1.0 => 0.1}/post-install.txt | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename ckrack/optimus-bundle/{0.1.0 => 0.1}/config/packages/ckrack_optimus.yaml (100%) rename ckrack/optimus-bundle/{0.1.0 => 0.1}/manifest.json (100%) rename ckrack/optimus-bundle/{0.1.0 => 0.1}/post-install.txt (100%) diff --git a/ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml b/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml similarity index 100% rename from ckrack/optimus-bundle/0.1.0/config/packages/ckrack_optimus.yaml rename to ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml diff --git a/ckrack/optimus-bundle/0.1.0/manifest.json b/ckrack/optimus-bundle/0.1/manifest.json similarity index 100% rename from ckrack/optimus-bundle/0.1.0/manifest.json rename to ckrack/optimus-bundle/0.1/manifest.json diff --git a/ckrack/optimus-bundle/0.1.0/post-install.txt b/ckrack/optimus-bundle/0.1/post-install.txt similarity index 100% rename from ckrack/optimus-bundle/0.1.0/post-install.txt rename to ckrack/optimus-bundle/0.1/post-install.txt From 97264e3cbafeaedd0939552761502ba296be7511 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 20:05:34 +0300 Subject: [PATCH 280/394] Make connection always as string --- .../1.0/config/packages/jurry_rabbitmq.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml index 438d6429..f6d4400e 100644 --- a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -1,11 +1,5 @@ amqp_handler: -# You can define connection in both ways: as array or as a string -# connection: 'tcp://guest:guest@172.18.0.01:5672' - connection: - host: 172.18.0.1 - port: 5672 - user: guest - password: guest + connection: 'tcp://guest:guest@172.18.0.01:5672' queues_properties: sync_queue: name: stores_sync From 1c89d86bf7d828ee26e6cf6b5c2c96dd741f902e Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 21:07:09 +0300 Subject: [PATCH 281/394] Update config --- .../amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml index f6d4400e..1948e0e9 100644 --- a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -1,5 +1,5 @@ amqp_handler: - connection: 'tcp://guest:guest@172.18.0.01:5672' + connection: 'tcp://guest:guest@localhost:5672' queues_properties: sync_queue: name: stores_sync From ebb6bd7490dcae21446f9cf0bc88b4eaba7f0868 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 21:20:59 +0300 Subject: [PATCH 282/394] Add environment variable --- .../1.0/config/packages/jurry_rabbitmq.yaml | 2 +- jurry/amqp-symfony-bundle/1.0/manifest.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml index 1948e0e9..ea606b7e 100644 --- a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -1,5 +1,5 @@ amqp_handler: - connection: 'tcp://guest:guest@localhost:5672' + connection: '%env' queues_properties: sync_queue: name: stores_sync diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 740a5175..c865079e 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -4,5 +4,8 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "RABBIT_MQ_DSN": "tcp://guest:guest@172.18.0.01:5672" } } From 91c09b14e5d0e8586d46388528e8fd9ee71aa46f Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 21:30:27 +0300 Subject: [PATCH 283/394] Update env variable value --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index c865079e..13453ff3 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@172.18.0.01:5672" + "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" } } From 1c041ae445189dfef38cb6b6546f5765866b6929 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 21:37:34 +0300 Subject: [PATCH 284/394] Update env variable --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 13453ff3..1fb1f3af 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" + "RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" } } From 1986942a466b2352b885ecec2df1a49a8af3e0b9 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 22:44:11 +0300 Subject: [PATCH 285/394] Fixes --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 1fb1f3af..13453ff3 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" + "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" } } From de6942c5f5e89633ffcf8eb19aed58a7de08d0a3 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 22:47:41 +0300 Subject: [PATCH 286/394] Fixes --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 13453ff3..1fb1f3af 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" + "RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" } } From 89278604cf0bf8cdbe97e3d010e23f94cdd95d50 Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 22:50:40 +0300 Subject: [PATCH 287/394] Fix RABBIT_MQ_DSN env variable --- .../amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml index ea606b7e..f75b910f 100644 --- a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -1,5 +1,5 @@ amqp_handler: - connection: '%env' + connection: '%env(RABBIT_MQ_DSN)%' queues_properties: sync_queue: name: stores_sync From eced14d9afd8cb66e79632d7aae7766f366ffe4d Mon Sep 17 00:00:00 2001 From: wajdi Date: Tue, 26 May 2020 22:54:20 +0300 Subject: [PATCH 288/394] Fixes --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 1fb1f3af..13453ff3 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" + "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" } } From 8b1b30197d287a498f979e3ff1f0e2b371978c57 Mon Sep 17 00:00:00 2001 From: wajdi Date: Wed, 27 May 2020 00:36:04 +0300 Subject: [PATCH 289/394] Add vendor prefix to env variable --- .../amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml | 2 +- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml index f75b910f..27b7b26f 100644 --- a/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml +++ b/jurry/amqp-symfony-bundle/1.0/config/packages/jurry_rabbitmq.yaml @@ -1,5 +1,5 @@ amqp_handler: - connection: '%env(RABBIT_MQ_DSN)%' + connection: '%env(JURRY_RABBIT_MQ_DSN)%' queues_properties: sync_queue: name: stores_sync diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 13453ff3..93e03bc8 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" + "JURRY_RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" } } From b7ecfd6012e7f1078f4120db8f774f992e5ef538 Mon Sep 17 00:00:00 2001 From: wajdi Date: Wed, 27 May 2020 00:42:19 +0300 Subject: [PATCH 290/394] Let default connection string tcp://guest:guest@localhost:5672 --- jurry/amqp-symfony-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jurry/amqp-symfony-bundle/1.0/manifest.json b/jurry/amqp-symfony-bundle/1.0/manifest.json index 93e03bc8..c0215977 100644 --- a/jurry/amqp-symfony-bundle/1.0/manifest.json +++ b/jurry/amqp-symfony-bundle/1.0/manifest.json @@ -6,6 +6,6 @@ "config/": "%CONFIG_DIR%/" }, "env": { - "JURRY_RABBIT_MQ_DSN": "tcp://guest:guest@127.0.0.1:5672" + "JURRY_RABBIT_MQ_DSN": "tcp://guest:guest@localhost:5672" } } From d17d987bd2c830a265cf7414238f1504806fe8b0 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Thu, 28 May 2020 09:47:56 +0100 Subject: [PATCH 291/394] fix files name confict --- .../0.3/config/packages/{user.yaml => enigma972_user.yaml} | 0 .../0.3/config/routes/{user.yaml => enigma972_user.yaml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename enigma972/user-bundle/0.3/config/packages/{user.yaml => enigma972_user.yaml} (100%) rename enigma972/user-bundle/0.3/config/routes/{user.yaml => enigma972_user.yaml} (100%) diff --git a/enigma972/user-bundle/0.3/config/packages/user.yaml b/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml similarity index 100% rename from enigma972/user-bundle/0.3/config/packages/user.yaml rename to enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml diff --git a/enigma972/user-bundle/0.3/config/routes/user.yaml b/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml similarity index 100% rename from enigma972/user-bundle/0.3/config/routes/user.yaml rename to enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml From 2720f94e9acba9e9977cfe90417a031369cbb6a0 Mon Sep 17 00:00:00 2001 From: Laurentiu Cocos Date: Fri, 29 May 2020 17:18:29 +0300 Subject: [PATCH 292/394] Added infifni/euplatesc-plugin flex recipe for 1.0 --- .../config/routes/infifni_sylius_euplatesc_plugin.yaml | 2 ++ infifni/euplatesc-plugin/1.0/manifest.json | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml create mode 100644 infifni/euplatesc-plugin/1.0/manifest.json diff --git a/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml b/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml new file mode 100644 index 00000000..f68bb83c --- /dev/null +++ b/infifni/euplatesc-plugin/1.0/config/routes/infifni_sylius_euplatesc_plugin.yaml @@ -0,0 +1,2 @@ +infifni_sylius_euplatesc_plugin: + resource: "@InfifniSyliusEuPlatescPlugin/Resources/config/routing.yml" diff --git a/infifni/euplatesc-plugin/1.0/manifest.json b/infifni/euplatesc-plugin/1.0/manifest.json new file mode 100644 index 00000000..5ec58063 --- /dev/null +++ b/infifni/euplatesc-plugin/1.0/manifest.json @@ -0,0 +1,9 @@ +{ + "aliases": ["sylius-euplatesc-plugin", "sylius-euplatesc", "infifni-euplatesc-plugin"], + "bundles": { + "Infifni\\SyliusEuPlatescPlugin\\InfifniSyliusEuPlatescPlugin": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file From 3cbfe3577d4d9da56222da495f7d4f4841310480 Mon Sep 17 00:00:00 2001 From: Laurentiu Cocos Date: Fri, 29 May 2020 17:23:30 +0300 Subject: [PATCH 293/394] Removed aliases --- infifni/euplatesc-plugin/1.0/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infifni/euplatesc-plugin/1.0/manifest.json b/infifni/euplatesc-plugin/1.0/manifest.json index 5ec58063..fd4f5dde 100644 --- a/infifni/euplatesc-plugin/1.0/manifest.json +++ b/infifni/euplatesc-plugin/1.0/manifest.json @@ -1,9 +1,8 @@ { - "aliases": ["sylius-euplatesc-plugin", "sylius-euplatesc", "infifni-euplatesc-plugin"], "bundles": { "Infifni\\SyliusEuPlatescPlugin\\InfifniSyliusEuPlatescPlugin": ["all"] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } -} \ No newline at end of file +} From 70b3839a30968e19fcfb464699ce5765bffe2ba7 Mon Sep 17 00:00:00 2001 From: "tien.xuan.vo" Date: Thu, 7 May 2020 00:12:50 +0700 Subject: [PATCH 294/394] Update tienvx/mbt-bundle to 1.17 --- .../mbt-bundle/1.17/config/packages/tienvx_mbt.yaml | 3 +++ tienvx/mbt-bundle/1.17/manifest.json | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml create mode 100644 tienvx/mbt-bundle/1.17/manifest.json diff --git a/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml b/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml new file mode 100644 index 00000000..403fc04a --- /dev/null +++ b/tienvx/mbt-bundle/1.17/config/packages/tienvx_mbt.yaml @@ -0,0 +1,3 @@ +tienvx_mbt: + email_from: '%env(EMAIL_FROM)%' + admin_url: '%env(ADMIN_URL)%' diff --git a/tienvx/mbt-bundle/1.17/manifest.json b/tienvx/mbt-bundle/1.17/manifest.json new file mode 100644 index 00000000..6f4085b2 --- /dev/null +++ b/tienvx/mbt-bundle/1.17/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Tienvx\\Bundle\\MbtBundle\\TienvxMbtBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "EMAIL_FROM": "from@example.com", + "ADMIN_URL": "http://localhost" + } +} From b6b8ba2b13b7f0f8deb394f11e2a9a6429b2bfba Mon Sep 17 00:00:00 2001 From: Baptiste Leduc Date: Thu, 26 Mar 2020 21:19:23 +0100 Subject: [PATCH 295/394] Update recipes for Jane v6.0 --- .../6.0/bin/jane-json-schema-generate | 15 +++++++++++++++ .../json-schema/6.0/config/jane/json_schema.php | 8 ++++++++ .../json-schema/6.0/config/packages/jane.yaml | 6 ++++++ jane-php/json-schema/6.0/manifest.json | 9 +++++++++ jane-php/json-schema/6.0/post-install.txt | 12 ++++++++++++ .../6.0/bin/jane-open-api-generate | 16 ++++++++++++++++ .../open-api-common/6.0/config/jane/open_api.php | 7 +++++++ .../6.0/config/packages/jane.yaml | 6 ++++++ jane-php/open-api-common/6.0/manifest.json | 9 +++++++++ jane-php/open-api-common/6.0/post-install.txt | 12 ++++++++++++ 10 files changed, 100 insertions(+) create mode 100755 jane-php/json-schema/6.0/bin/jane-json-schema-generate create mode 100644 jane-php/json-schema/6.0/config/jane/json_schema.php create mode 100644 jane-php/json-schema/6.0/config/packages/jane.yaml create mode 100644 jane-php/json-schema/6.0/manifest.json create mode 100644 jane-php/json-schema/6.0/post-install.txt create mode 100644 jane-php/open-api-common/6.0/bin/jane-open-api-generate create mode 100644 jane-php/open-api-common/6.0/config/jane/open_api.php create mode 100644 jane-php/open-api-common/6.0/config/packages/jane.yaml create mode 100644 jane-php/open-api-common/6.0/manifest.json create mode 100644 jane-php/open-api-common/6.0/post-install.txt diff --git a/jane-php/json-schema/6.0/bin/jane-json-schema-generate b/jane-php/json-schema/6.0/bin/jane-json-schema-generate new file mode 100755 index 00000000..7fa9edfc --- /dev/null +++ b/jane-php/json-schema/6.0/bin/jane-json-schema-generate @@ -0,0 +1,15 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/json_schema.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/json-schema/6.0/config/jane/json_schema.php b/jane-php/json-schema/6.0/config/jane/json_schema.php new file mode 100644 index 00000000..83506b6c --- /dev/null +++ b/jane-php/json-schema/6.0/config/jane/json_schema.php @@ -0,0 +1,8 @@ + __DIR__ . '/json-schema.json', + 'root-class' => 'MyModel', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/json-schema/6.0/config/packages/jane.yaml b/jane-php/json-schema/6.0/config/packages/jane.yaml new file mode 100644 index 00000000..4bc2f383 --- /dev/null +++ b/jane-php/json-schema/6.0/config/packages/jane.yaml @@ -0,0 +1,6 @@ +services: + _defaults: + autowire: true + autoconfigure: true + +# MyApp\Library\Generated\Normalizer\JaneObjectNormalizer: null diff --git a/jane-php/json-schema/6.0/manifest.json b/jane-php/json-schema/6.0/manifest.json new file mode 100644 index 00000000..a55f0fce --- /dev/null +++ b/jane-php/json-schema/6.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + } +} diff --git a/jane-php/json-schema/6.0/post-install.txt b/jane-php/json-schema/6.0/post-install.txt new file mode 100644 index 00000000..2654ca54 --- /dev/null +++ b/jane-php/json-schema/6.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * Finish package configuration: + 1. Configure config/jane/json_schema.php with your specification details + 2. Run bin/jane-json-schema-generate + 3. Add generated/ directory to your composer autoload definition (eg. "MyApp\\Library\\Generated\\": "generated/") + 4. Open config/packages/jane.yaml and replace MyApp\Library\Generated\ namespace with your generated namespace. + 5. Then remove line comments + +Documentation: https://jane.readthedocs.io/en/latest/ diff --git a/jane-php/open-api-common/6.0/bin/jane-open-api-generate b/jane-php/open-api-common/6.0/bin/jane-open-api-generate new file mode 100644 index 00000000..ab6ef287 --- /dev/null +++ b/jane-php/open-api-common/6.0/bin/jane-open-api-generate @@ -0,0 +1,16 @@ +#!/usr/bin/env php + __DIR__ . '/../config/jane/open_api.php'], $command->getDefinition()); + +$command->execute($inputArray, new NullOutput()); diff --git a/jane-php/open-api-common/6.0/config/jane/open_api.php b/jane-php/open-api-common/6.0/config/jane/open_api.php new file mode 100644 index 00000000..cc34865e --- /dev/null +++ b/jane-php/open-api-common/6.0/config/jane/open_api.php @@ -0,0 +1,7 @@ + __DIR__ . '/open-api.yaml', + 'namespace' => 'MyApp\Library\Generated', + 'directory' => __DIR__ . '/../../generated', +]; diff --git a/jane-php/open-api-common/6.0/config/packages/jane.yaml b/jane-php/open-api-common/6.0/config/packages/jane.yaml new file mode 100644 index 00000000..4bc2f383 --- /dev/null +++ b/jane-php/open-api-common/6.0/config/packages/jane.yaml @@ -0,0 +1,6 @@ +services: + _defaults: + autowire: true + autoconfigure: true + +# MyApp\Library\Generated\Normalizer\JaneObjectNormalizer: null diff --git a/jane-php/open-api-common/6.0/manifest.json b/jane-php/open-api-common/6.0/manifest.json new file mode 100644 index 00000000..a55f0fce --- /dev/null +++ b/jane-php/open-api-common/6.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "bin/": "%BIN_DIR%/", + "config/": "%CONFIG_DIR%/" + }, + "conflict": { + "symfony/symfony": "<5.0" + } +} diff --git a/jane-php/open-api-common/6.0/post-install.txt b/jane-php/open-api-common/6.0/post-install.txt new file mode 100644 index 00000000..2f234739 --- /dev/null +++ b/jane-php/open-api-common/6.0/post-install.txt @@ -0,0 +1,12 @@ + + JanePHP - JSON Schema + + + * Finish package configuration: + 1. Configure config/jane/open_api.php with your specification details + 2. Run bin/jane-open-api-generate + 3. Add generated/ directory to your composer autoload definition (eg. "MyApp\\Library\\Generated\\": "generated/") + 4. Open config/packages/jane.yaml and replace MyApp\Library\Generated\ namespace with your generated namespace. + 5. Then remove line comments + +Documentation: https://jane.readthedocs.io/en/latest/ From 9c2ede7065172e778e642f5f76f54c1b77920ceb Mon Sep 17 00:00:00 2001 From: freezy Date: Sun, 7 Jun 2020 12:15:09 +0200 Subject: [PATCH 296/394] Added config for willdurand/hateoas-bundle --- .../1.4/config/packages/bazinga_hateoas.yaml | 4 ++++ willdurand/hateoas-bundle/1.4/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml create mode 100644 willdurand/hateoas-bundle/1.4/manifest.json diff --git a/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml b/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml new file mode 100644 index 00000000..93a743d3 --- /dev/null +++ b/willdurand/hateoas-bundle/1.4/config/packages/bazinga_hateoas.yaml @@ -0,0 +1,4 @@ +# For full configuration see https://github.com/willdurand/BazingaHateoasBundle/blob/master/Resources/doc/index.md#reference-configuration +bazinga_hateoas: + twig_extension: + enabled: true diff --git a/willdurand/hateoas-bundle/1.4/manifest.json b/willdurand/hateoas-bundle/1.4/manifest.json new file mode 100644 index 00000000..68ecd6c1 --- /dev/null +++ b/willdurand/hateoas-bundle/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Bazinga\\Bundle\\HateoasBundle\\BazingaHateoasBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 211931e1eb4d97a2455dbd66df6fc0d395af85f8 Mon Sep 17 00:00:00 2001 From: freezy Date: Sun, 7 Jun 2020 12:43:40 +0200 Subject: [PATCH 297/394] added config for 2.0 version --- .../2.0/config/packages/bazinga_hateoas.yaml | 4 ++++ willdurand/hateoas-bundle/2.0/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml create mode 100644 willdurand/hateoas-bundle/2.0/manifest.json diff --git a/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml b/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml new file mode 100644 index 00000000..93a743d3 --- /dev/null +++ b/willdurand/hateoas-bundle/2.0/config/packages/bazinga_hateoas.yaml @@ -0,0 +1,4 @@ +# For full configuration see https://github.com/willdurand/BazingaHateoasBundle/blob/master/Resources/doc/index.md#reference-configuration +bazinga_hateoas: + twig_extension: + enabled: true diff --git a/willdurand/hateoas-bundle/2.0/manifest.json b/willdurand/hateoas-bundle/2.0/manifest.json new file mode 100644 index 00000000..68ecd6c1 --- /dev/null +++ b/willdurand/hateoas-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Bazinga\\Bundle\\HateoasBundle\\BazingaHateoasBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 3c3ce19354596a968defdb4d72c736cd4dc7a199 Mon Sep 17 00:00:00 2001 From: simivar Date: Mon, 8 Jun 2020 13:10:28 +0200 Subject: [PATCH 298/394] Add recipee for tbbc/money-bundle version 4.0 --- tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml | 4 ++++ tbbc/money-bundle/4.0/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml create mode 100644 tbbc/money-bundle/4.0/manifest.json diff --git a/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml b/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml new file mode 100644 index 00000000..a3d2cf19 --- /dev/null +++ b/tbbc/money-bundle/4.0/config/packages/tbbc_money.yaml @@ -0,0 +1,4 @@ +tbbc_money: + currencies: ["USD", "EUR"] + reference_currency: "EUR" + decimals: 2 diff --git a/tbbc/money-bundle/4.0/manifest.json b/tbbc/money-bundle/4.0/manifest.json new file mode 100644 index 00000000..147d5d4b --- /dev/null +++ b/tbbc/money-bundle/4.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Tbbc\\MoneyBundle\\TbbcMoneyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 7dec3d471105f8d4e52ec83755b59464e0245cdd Mon Sep 17 00:00:00 2001 From: Christian Scheb Date: Fri, 12 Jun 2020 15:00:31 +0200 Subject: [PATCH 299/394] Add recipe for scheb/2fa-bundle --- scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml | 8 ++++++++ scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml | 7 +++++++ scheb/2fa-bundle/5.0/manifest.json | 8 ++++++++ 3 files changed, 23 insertions(+) create mode 100644 scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml create mode 100644 scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml create mode 100644 scheb/2fa-bundle/5.0/manifest.json diff --git a/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml b/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml new file mode 100644 index 00000000..6b6135ae --- /dev/null +++ b/scheb/2fa-bundle/5.0/config/packages/scheb_2fa.yaml @@ -0,0 +1,8 @@ +# See the configuration reference at https://github.com/scheb/2fa/blob/master/doc/configuration.md +scheb_two_factor: + security_tokens: + - Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken + # If you're using guard-based authentication, you have to use this one: + # - Symfony\Component\Security\Guard\Token\PostAuthenticationGuardToken + # If you're using authenticator-based security (introduced in Symfony 5.1), you have to use this one: + # - Symfony\Component\Security\Http\Authenticator\Token\PostAuthenticationToken diff --git a/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml b/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml new file mode 100644 index 00000000..b574a0c9 --- /dev/null +++ b/scheb/2fa-bundle/5.0/config/routes/scheb_2fa.yaml @@ -0,0 +1,7 @@ +2fa_login: + path: /2fa + defaults: + _controller: "scheb_two_factor.form_controller:form" + +2fa_login_check: + path: /2fa_check diff --git a/scheb/2fa-bundle/5.0/manifest.json b/scheb/2fa-bundle/5.0/manifest.json new file mode 100644 index 00000000..f9204ee8 --- /dev/null +++ b/scheb/2fa-bundle/5.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Scheb\\TwoFactorBundle\\SchebTwoFactorBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 820bfdecdd448dc4c0f9e2571758ab7e707323f0 Mon Sep 17 00:00:00 2001 From: johnkrovitch Date: Sat, 13 Jun 2020 10:39:07 +0200 Subject: [PATCH 300/394] Add recipe for lag/adminbundle:1.0 --- lag/adminbundle/1.0/config/admin/resources/.gitignore | 0 lag/adminbundle/1.0/config/packages/lag_admin.yaml | 3 +++ lag/adminbundle/1.0/manifest.json | 8 ++++++++ 3 files changed, 11 insertions(+) create mode 100644 lag/adminbundle/1.0/config/admin/resources/.gitignore create mode 100644 lag/adminbundle/1.0/config/packages/lag_admin.yaml create mode 100644 lag/adminbundle/1.0/manifest.json diff --git a/lag/adminbundle/1.0/config/admin/resources/.gitignore b/lag/adminbundle/1.0/config/admin/resources/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/lag/adminbundle/1.0/config/packages/lag_admin.yaml b/lag/adminbundle/1.0/config/packages/lag_admin.yaml new file mode 100644 index 00000000..879c4893 --- /dev/null +++ b/lag/adminbundle/1.0/config/packages/lag_admin.yaml @@ -0,0 +1,3 @@ +lag_admin: + application: + resources_path: '%kernel.project_dir%/config/admin/resources' diff --git a/lag/adminbundle/1.0/manifest.json b/lag/adminbundle/1.0/manifest.json new file mode 100644 index 00000000..bc3ca383 --- /dev/null +++ b/lag/adminbundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "LAG\\AdminBundle\\LAGAdminBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 68afbd10b5e351a1931ff1645cbac5e4ae6c062d Mon Sep 17 00:00:00 2001 From: Baptiste Leduc Date: Sun, 14 Jun 2020 16:56:22 +0200 Subject: [PATCH 301/394] Fixing binary being not executable --- jane-php/open-api-common/6.0/bin/jane-open-api-generate | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 jane-php/open-api-common/6.0/bin/jane-open-api-generate diff --git a/jane-php/open-api-common/6.0/bin/jane-open-api-generate b/jane-php/open-api-common/6.0/bin/jane-open-api-generate old mode 100644 new mode 100755 From 6a7bca0127e270ea6c1744114c8d6b87db4130c5 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2020 11:26:16 +0200 Subject: [PATCH 302/394] Add ecphp/cas-bundle package. --- ecphp/cas-bundle/1.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ecphp/cas-bundle/1.0/manifest.json diff --git a/ecphp/cas-bundle/1.0/manifest.json b/ecphp/cas-bundle/1.0/manifest.json new file mode 100644 index 00000000..0ed7286a --- /dev/null +++ b/ecphp/cas-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\CasBundle\\CasBundle": ["all"] + }, + "copy-from-package": { + "Resources/": "%CONFIG_DIR%/" + } +} From d00a2608179d8d2185da817178a86c64b0bc1a70 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2020 11:26:16 +0200 Subject: [PATCH 303/394] Add ecphp/cas-bundle package. --- ecphp/cas-bundle/2.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ecphp/cas-bundle/2.0/manifest.json diff --git a/ecphp/cas-bundle/2.0/manifest.json b/ecphp/cas-bundle/2.0/manifest.json new file mode 100644 index 00000000..0ed7286a --- /dev/null +++ b/ecphp/cas-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\CasBundle\\CasBundle": ["all"] + }, + "copy-from-package": { + "Resources/": "%CONFIG_DIR%/" + } +} From d3229d57615a612c308b2a4b0dfa91e82c996b33 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2020 14:00:33 +0200 Subject: [PATCH 304/394] Add ecphp/eu-login-bundle package for Symfony 4.4. --- ecphp/eu-login-bundle/1.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ecphp/eu-login-bundle/1.0/manifest.json diff --git a/ecphp/eu-login-bundle/1.0/manifest.json b/ecphp/eu-login-bundle/1.0/manifest.json new file mode 100644 index 00000000..8bd9dc6d --- /dev/null +++ b/ecphp/eu-login-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] + }, + "copy-from-package": { + "Resources/": "%CONFIG_DIR%/" + } +} From 625cfaf4f695dc43a7eee8997ebf65797969fc6a Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2020 14:01:32 +0200 Subject: [PATCH 305/394] Add ecphp/eu-login-bundle package for Symfony 5. --- ecphp/eu-login-bundle/2.0/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ecphp/eu-login-bundle/2.0/manifest.json diff --git a/ecphp/eu-login-bundle/2.0/manifest.json b/ecphp/eu-login-bundle/2.0/manifest.json new file mode 100644 index 00000000..8bd9dc6d --- /dev/null +++ b/ecphp/eu-login-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] + }, + "copy-from-package": { + "Resources/": "%CONFIG_DIR%/" + } +} From 546f949c012057d0f376fc9a4121842bed5e0c58 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Sun, 21 Jun 2020 15:34:09 +0100 Subject: [PATCH 306/394] rename rootnode name --- enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml | 2 +- enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml b/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml index 71cd2d7f..dbf18811 100644 --- a/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml +++ b/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml @@ -1,4 +1,4 @@ -user: +engima972_user: # if this value equal true, the User should confirm theire mail check_mail: false # The validity duration in secondes, 4 houres by default (14,400 sec) diff --git a/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml b/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml index dc8eb37a..b1b4f1fc 100644 --- a/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml +++ b/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml @@ -1,3 +1,3 @@ -user: - resource: '@UserBundle/Controller/' +engima972_user: + resource: '@Enigma972UserBundle/Controller/' type: annotation From 584d00ed1f136d2d0a839293a8f09b09ba99bb9c Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Mon, 22 Jun 2020 12:30:24 +0100 Subject: [PATCH 307/394] fix rootnode name and bundle classname --- enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml | 2 +- enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml | 2 +- enigma972/user-bundle/0.3/manifest.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml b/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml index dbf18811..37908b26 100644 --- a/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml +++ b/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml @@ -1,4 +1,4 @@ -engima972_user: +enigma972_user: # if this value equal true, the User should confirm theire mail check_mail: false # The validity duration in secondes, 4 houres by default (14,400 sec) diff --git a/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml b/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml index b1b4f1fc..0da23668 100644 --- a/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml +++ b/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml @@ -1,3 +1,3 @@ -engima972_user: +enigma972_user: resource: '@Enigma972UserBundle/Controller/' type: annotation diff --git a/enigma972/user-bundle/0.3/manifest.json b/enigma972/user-bundle/0.3/manifest.json index c5520973..0a46bc79 100644 --- a/enigma972/user-bundle/0.3/manifest.json +++ b/enigma972/user-bundle/0.3/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "Enigma972\\UserBundle\\UserBundle": ["all"] + "Enigma972\\UserBundle\\Enigma972UserBundle": ["all"] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" From eac6e579b64761b48be6d1725739f6c7e7c0dcee Mon Sep 17 00:00:00 2001 From: Mael Date: Wed, 24 Jun 2020 17:22:50 +0200 Subject: [PATCH 308/394] fix typo --- mael/intervention-image-bundle/1.0/post-install.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mael/intervention-image-bundle/1.0/post-install.txt b/mael/intervention-image-bundle/1.0/post-install.txt index 28f04df2..d3fd52fa 100644 --- a/mael/intervention-image-bundle/1.0/post-install.txt +++ b/mael/intervention-image-bundle/1.0/post-install.txt @@ -1,4 +1,4 @@ Next for MaelInterventionImageBundle - * Edit mael_intervention_image.yaml to configure the driver in config/packages - * Readdocumentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md + * Edit mael_intervention_image.yaml to configure the driver in config/packages + * Read documentation at https://github.com/Mael-91/InterventionImageBundle/blob/master/README.md From 84b08f1704ae8ce331db4e7bd4aa0e4e77f2ea98 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Thu, 25 Jun 2020 12:03:40 +0200 Subject: [PATCH 309/394] Bundle health check recipe --- .../1.0/config/routes/health_check.yaml | 5 +++++ oat-sa/bundle-health-check/1.0/manifest.json | 8 ++++++++ oat-sa/bundle-health-check/1.0/post-install.txt | 7 +++++++ oat-sa/bundle-lti1p3/2.0/post-install.txt | 4 ++-- 4 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml create mode 100644 oat-sa/bundle-health-check/1.0/manifest.json create mode 100644 oat-sa/bundle-health-check/1.0/post-install.txt diff --git a/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml new file mode 100644 index 00000000..2bb36b82 --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml @@ -0,0 +1,5 @@ +health_check_check: + resource: '@HealthCheckBundle/Resources/config/routing/health_check_check.yaml' + +health_check_ping: + resource: '@HealthCheckBundle/Resources/config/routing/health_check_ping.yaml' \ No newline at end of file diff --git a/oat-sa/bundle-health-check/1.0/manifest.json b/oat-sa/bundle-health-check/1.0/manifest.json new file mode 100644 index 00000000..3d4eb17d --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "OAT\\Bundle\\HealthCheckBundle\\HealthCheckBundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file diff --git a/oat-sa/bundle-health-check/1.0/post-install.txt b/oat-sa/bundle-health-check/1.0/post-install.txt new file mode 100644 index 00000000..18e3cba5 --- /dev/null +++ b/oat-sa/bundle-health-check/1.0/post-install.txt @@ -0,0 +1,7 @@ + + Next: Health check bundle configuration + + + * Configure health check and ping routes in file config/routes/health_check.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-health-check diff --git a/oat-sa/bundle-lti1p3/2.0/post-install.txt b/oat-sa/bundle-lti1p3/2.0/post-install.txt index 30718974..e8a9d95d 100644 --- a/oat-sa/bundle-lti1p3/2.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/2.0/post-install.txt @@ -1,6 +1,6 @@ - + Next: LTI 1.3 bundle configuration - + * Create development keys: mkdir -p config/secrets/dev && openssl genrsa -out config/secrets/dev/private.key 2048 && openssl rsa -in config/secrets/dev/private.key -outform PEM -pubout -out config/secrets/dev/public.key From f2bfaf843a657d3944cd95da6c37c04cf7ded9e5 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Thu, 25 Jun 2020 12:07:28 +0200 Subject: [PATCH 310/394] Bot check fixes --- oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml | 2 +- oat-sa/bundle-health-check/1.0/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml index 2bb36b82..029b7fb5 100644 --- a/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml +++ b/oat-sa/bundle-health-check/1.0/config/routes/health_check.yaml @@ -2,4 +2,4 @@ health_check_check: resource: '@HealthCheckBundle/Resources/config/routing/health_check_check.yaml' health_check_ping: - resource: '@HealthCheckBundle/Resources/config/routing/health_check_ping.yaml' \ No newline at end of file + resource: '@HealthCheckBundle/Resources/config/routing/health_check_ping.yaml' diff --git a/oat-sa/bundle-health-check/1.0/manifest.json b/oat-sa/bundle-health-check/1.0/manifest.json index 3d4eb17d..7989c982 100644 --- a/oat-sa/bundle-health-check/1.0/manifest.json +++ b/oat-sa/bundle-health-check/1.0/manifest.json @@ -5,4 +5,4 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } -} \ No newline at end of file +} From 8c1205b0482f4145ee008629d5b0d62c51cb0888 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:26:11 +0200 Subject: [PATCH 311/394] Trying out new config --- .travis.yml | 15 ++++++++++++++- .../1.0/config/packages/async_aws.yaml | 6 ++++++ async-aws/async-aws-bundle/1.0/manifest.json | 8 ++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml create mode 100644 async-aws/async-aws-bundle/1.0/manifest.json diff --git a/.travis.yml b/.travis.yml index 2561461d..a79edc5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,4 +30,17 @@ install: - composer config extra.symfony.allow-contrib true script: - - composer req --ignore-platform-reqs $(echo $PACKAGES) + - | + EXIT_CODE=$(composer req --ignore-platform-reqs $(echo $PACKAGES)) + if [[ EXIT_CODE -eq 0 ]]; then + exit 0; + elif [[ EXIT_CODE -eq 1 ]]; then + echo "Could not install package"; + exit 1; + elif [[ EXIT_CODE -eq 2 ]]; then + echo "Could not resolve dependencies. You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; + exit 1; + fi + + exit $EXIT_CODE; + diff --git a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml new file mode 100644 index 00000000..a421c703 --- /dev/null +++ b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml @@ -0,0 +1,6 @@ +# Read documentation at https://async-aws.com/integration/symfony-bundle.html +async_aws: + config: + + # All installed clients are automatically autowired. Use this section to customize clients + clients: diff --git a/async-aws/async-aws-bundle/1.0/manifest.json b/async-aws/async-aws-bundle/1.0/manifest.json new file mode 100644 index 00000000..f7acf1e8 --- /dev/null +++ b/async-aws/async-aws-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "AsyncAws\\Symfony\\Bundle\\AsyncAwsBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From a7c052d3fdaafe988e02e4a2747460a17189e939 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:32:36 +0200 Subject: [PATCH 312/394] minor --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a79edc5d..a13bbb23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,6 @@ matrix: env: SKELETON_VERSION="^4.4" - php: 7.4 env: SKELETON_VERSION="^5.0" - allow_failures: - - php: 7.4 - env: SKELETON_VERSION="^3.4" before_install: - phpenv config-rm xdebug.ini || true @@ -31,7 +28,8 @@ install: script: - | - EXIT_CODE=$(composer req --ignore-platform-reqs $(echo $PACKAGES)) + EXIT_CODE=$(composer req --ignore-platform-reqs $(echo $PACKAGES)); + echo "Exit code: $EXIT_CODE"; if [[ EXIT_CODE -eq 0 ]]; then exit 0; elif [[ EXIT_CODE -eq 1 ]]; then From 48113aa9616714313e26e29a9f12c446bdeb1da5 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:39:07 +0200 Subject: [PATCH 313/394] syntax --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index a13bbb23..3aed479f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,17 +28,18 @@ install: script: - | - EXIT_CODE=$(composer req --ignore-platform-reqs $(echo $PACKAGES)); + composer req --ignore-platform-reqs $(echo $PACKAGES) + EXIT_CODE=$? echo "Exit code: $EXIT_CODE"; + MESSAGE=""; if [[ EXIT_CODE -eq 0 ]]; then exit 0; elif [[ EXIT_CODE -eq 1 ]]; then - echo "Could not install package"; - exit 1; + MESSAGE="Could not install package"; elif [[ EXIT_CODE -eq 2 ]]; then - echo "Could not resolve dependencies. You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; - exit 1; + MESSAGE="Could not resolve dependencies. You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; fi + echo -e "#\n#\n#\n#\n# $MESSAGE\n#\n#\n#\n#\n"; exit $EXIT_CODE; From 6c2493dd895813d95c229f638aab10c65b2f3da4 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:45:03 +0200 Subject: [PATCH 314/394] Use function --- .travis.yml | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3aed479f..df426d81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,9 @@ matrix: env: SKELETON_VERSION="^4.4" - php: 7.4 env: SKELETON_VERSION="^5.0" + allow_failures: + - php: 7.4 + env: SKELETON_VERSION="^3.4" before_install: - phpenv config-rm xdebug.ini || true @@ -26,20 +29,24 @@ install: - cd flex - composer config extra.symfony.allow-contrib true -script: - - | - composer req --ignore-platform-reqs $(echo $PACKAGES) - EXIT_CODE=$? - echo "Exit code: $EXIT_CODE"; - MESSAGE=""; - if [[ EXIT_CODE -eq 0 ]]; then - exit 0; - elif [[ EXIT_CODE -eq 1 ]]; then - MESSAGE="Could not install package"; - elif [[ EXIT_CODE -eq 2 ]]; then - MESSAGE="Could not resolve dependencies. You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; - fi +before_script: + - | + install_package() { + composer require --ignore-platform-reqs $1 + EXIT_CODE=$? - echo -e "#\n#\n#\n#\n# $MESSAGE\n#\n#\n#\n#\n"; - exit $EXIT_CODE; + MESSAGE=""; + if [[ EXIT_CODE -eq 0 ]]; then + exit 0; + elif [[ EXIT_CODE -eq 1 ]]; then + MESSAGE="Could not install package"; + elif [[ EXIT_CODE -eq 2 ]]; then + MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; + fi + echo -e "#\n#\n#\n# $MESSAGE\n#\n#\n#\n"; + exit $EXIT_CODE; + } + export -f install_package + +script: install_package $(echo $PACKAGES) From 5b7e09fa08641612730ba0661b474ba7db449c10 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:45:55 +0200 Subject: [PATCH 315/394] minor --- .../0.1/config/packages/happyr_json_api_response_factory.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml b/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml index 81962a2d..9eda8997 100644 --- a/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml +++ b/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml @@ -1,4 +1,5 @@ services: + Happyr\JsonApiResponseFactory\ResponseFactory: arguments: ['@happyr.fractal.manager'] From 4303edbc81a8349d45fa7a9bb3ea57170f3da93d Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:47:37 +0200 Subject: [PATCH 316/394] Indentation --- .travis.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index df426d81..59f58759 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,22 +31,22 @@ install: before_script: - | - install_package() { - composer require --ignore-platform-reqs $1 - EXIT_CODE=$? + install_package() { + composer require --ignore-platform-reqs $1 + EXIT_CODE=$? - MESSAGE=""; - if [[ EXIT_CODE -eq 0 ]]; then + MESSAGE=""; + if [[ EXIT_CODE -eq 0 ]]; then exit 0; - elif [[ EXIT_CODE -eq 1 ]]; then + elif [[ EXIT_CODE -eq 1 ]]; then MESSAGE="Could not install package"; - elif [[ EXIT_CODE -eq 2 ]]; then + elif [[ EXIT_CODE -eq 2 ]]; then MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; - fi + fi - echo -e "#\n#\n#\n# $MESSAGE\n#\n#\n#\n"; - exit $EXIT_CODE; - } - export -f install_package + echo -e "#\n#\n#\n# $MESSAGE\n#\n#\n#\n"; + exit $EXIT_CODE; + } + export -f install_package script: install_package $(echo $PACKAGES) From fb4d8b88859687637fa2f0ea852574fd35d5f9d0 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:50:07 +0200 Subject: [PATCH 317/394] make sure we support multiple packages --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 59f58759..4671f200 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,8 +32,8 @@ install: before_script: - | install_package() { - composer require --ignore-platform-reqs $1 - EXIT_CODE=$? + composer require --ignore-platform-reqs $(echo $1); + EXIT_CODE=$?; MESSAGE=""; if [[ EXIT_CODE -eq 0 ]]; then @@ -49,4 +49,4 @@ before_script: } export -f install_package -script: install_package $(echo $PACKAGES) +script: install_package $PACKAGES From 3323b01b72c6f534f23acc04874cfe8fce4edb93 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:54:16 +0200 Subject: [PATCH 318/394] use second argument --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4671f200..344a0e30 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ install: before_script: - | install_package() { - composer require --ignore-platform-reqs $(echo $1); + composer require --ignore-platform-reqs $1 $2; EXIT_CODE=$?; MESSAGE=""; @@ -49,4 +49,4 @@ before_script: } export -f install_package -script: install_package $PACKAGES +script: install_package $(echo $PACKAGES) From 541d83681f58949aa1a00278774b4b9bc89f3488 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:55:15 +0200 Subject: [PATCH 319/394] syntax --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 344a0e30..c238ccdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ install: before_script: - | install_package() { - composer require --ignore-platform-reqs $1 $2; + composer require --ignore-platform-reqs $@; EXIT_CODE=$?; MESSAGE=""; From d10866f489754eec876175c90ddbec4d2634186d Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 12:56:38 +0200 Subject: [PATCH 320/394] Revert changes in second package --- .../0.1/config/packages/happyr_json_api_response_factory.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml b/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml index 9eda8997..81962a2d 100644 --- a/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml +++ b/happyr/json-api-response-factory/0.1/config/packages/happyr_json_api_response_factory.yaml @@ -1,5 +1,4 @@ services: - Happyr\JsonApiResponseFactory\ResponseFactory: arguments: ['@happyr.fractal.manager'] From 817ce1650229f0f2aaea1d8fbc55e723411be459 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 13:02:44 +0200 Subject: [PATCH 321/394] force error --- .travis.yml | 2 +- async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c238ccdb..68d99c13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ before_script: if [[ EXIT_CODE -eq 0 ]]; then exit 0; elif [[ EXIT_CODE -eq 1 ]]; then - MESSAGE="Could not install package"; + MESSAGE="Could not install package and configure package."; elif [[ EXIT_CODE -eq 2 ]]; then MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; fi diff --git a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml index a421c703..574d7104 100644 --- a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml +++ b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml @@ -3,4 +3,4 @@ async_aws: config: # All installed clients are automatically autowired. Use this section to customize clients - clients: + cliXXXents: From 15ac1c3de235ebd21925fd72053b320a15c44e3e Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 25 Jun 2020 13:27:40 +0200 Subject: [PATCH 322/394] remove tmp code --- .travis.yml | 2 +- async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68d99c13..76b43896 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,7 +44,7 @@ before_script: MESSAGE="Could not resolve dependencies.\n# You can ignore this error if your package does not support Symfony $SKELETON_VERSION"; fi - echo -e "#\n#\n#\n# $MESSAGE\n#\n#\n#\n"; + echo -e "\n#\n#\n# $MESSAGE\n#\n#\n#\n"; exit $EXIT_CODE; } export -f install_package diff --git a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml index 574d7104..a421c703 100644 --- a/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml +++ b/async-aws/async-aws-bundle/1.0/config/packages/async_aws.yaml @@ -3,4 +3,4 @@ async_aws: config: # All installed clients are automatically autowired. Use this section to customize clients - cliXXXents: + clients: From 4bab9466ea322fb5e6146668b7cf34738dcc9781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joubert=20Guimar=C3=A3es=20de=20Assis?= Date: Sat, 27 Jun 2020 22:28:54 -0300 Subject: [PATCH 323/394] Add ApiHelperBundle --- .../0.1/config/packages/redrat_api_helper.yaml | 2 ++ redrat/api-helper-bundle/0.1/manifest.json | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml create mode 100644 redrat/api-helper-bundle/0.1/manifest.json diff --git a/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml new file mode 100644 index 00000000..5b9ed006 --- /dev/null +++ b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml @@ -0,0 +1,2 @@ +redrat_api_helper: + paths: \ No newline at end of file diff --git a/redrat/api-helper-bundle/0.1/manifest.json b/redrat/api-helper-bundle/0.1/manifest.json new file mode 100644 index 00000000..0705c47e --- /dev/null +++ b/redrat/api-helper-bundle/0.1/manifest.json @@ -0,0 +1,9 @@ + +{ + "bundles": { + "RedRat\\ApiHelperBundle\\ApiHelperBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file From dee3accc8f88b7b9bcebe5d1927594bfd4bb66d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joubert=20Guimar=C3=A3es=20de=20Assis?= Date: Sat, 27 Jun 2020 22:32:19 -0300 Subject: [PATCH 324/394] Add missing new line into files --- .../0.1/config/packages/redrat_api_helper.yaml | 2 +- redrat/api-helper-bundle/0.1/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml index 5b9ed006..2a7bacef 100644 --- a/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml +++ b/redrat/api-helper-bundle/0.1/config/packages/redrat_api_helper.yaml @@ -1,2 +1,2 @@ redrat_api_helper: - paths: \ No newline at end of file + paths: diff --git a/redrat/api-helper-bundle/0.1/manifest.json b/redrat/api-helper-bundle/0.1/manifest.json index 0705c47e..0405f883 100644 --- a/redrat/api-helper-bundle/0.1/manifest.json +++ b/redrat/api-helper-bundle/0.1/manifest.json @@ -6,4 +6,4 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/" } -} \ No newline at end of file +} From 5f953389b0b240785a1e8407f6bef83bc06c74d8 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sun, 28 Jun 2020 10:12:02 +0200 Subject: [PATCH 325/394] Fix erroneous paths. --- ecphp/cas-bundle/1.0/manifest.json | 2 +- ecphp/cas-bundle/2.0/manifest.json | 2 +- ecphp/eu-login-bundle/1.0/manifest.json | 2 +- ecphp/eu-login-bundle/2.0/manifest.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ecphp/cas-bundle/1.0/manifest.json b/ecphp/cas-bundle/1.0/manifest.json index 0ed7286a..272a15d0 100644 --- a/ecphp/cas-bundle/1.0/manifest.json +++ b/ecphp/cas-bundle/1.0/manifest.json @@ -3,6 +3,6 @@ "EcPhp\\CasBundle\\CasBundle": ["all"] }, "copy-from-package": { - "Resources/": "%CONFIG_DIR%/" + "Resources/config/": "%CONFIG_DIR%/" } } diff --git a/ecphp/cas-bundle/2.0/manifest.json b/ecphp/cas-bundle/2.0/manifest.json index 0ed7286a..272a15d0 100644 --- a/ecphp/cas-bundle/2.0/manifest.json +++ b/ecphp/cas-bundle/2.0/manifest.json @@ -3,6 +3,6 @@ "EcPhp\\CasBundle\\CasBundle": ["all"] }, "copy-from-package": { - "Resources/": "%CONFIG_DIR%/" + "Resources/config/": "%CONFIG_DIR%/" } } diff --git a/ecphp/eu-login-bundle/1.0/manifest.json b/ecphp/eu-login-bundle/1.0/manifest.json index 8bd9dc6d..c6fb202b 100644 --- a/ecphp/eu-login-bundle/1.0/manifest.json +++ b/ecphp/eu-login-bundle/1.0/manifest.json @@ -3,6 +3,6 @@ "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] }, "copy-from-package": { - "Resources/": "%CONFIG_DIR%/" + "Resources/config/": "%CONFIG_DIR%/" } } diff --git a/ecphp/eu-login-bundle/2.0/manifest.json b/ecphp/eu-login-bundle/2.0/manifest.json index 8bd9dc6d..c6fb202b 100644 --- a/ecphp/eu-login-bundle/2.0/manifest.json +++ b/ecphp/eu-login-bundle/2.0/manifest.json @@ -3,6 +3,6 @@ "EcPhp\\EuLoginBundle\\EuLoginBundle": ["all"] }, "copy-from-package": { - "Resources/": "%CONFIG_DIR%/" + "Resources/config/": "%CONFIG_DIR%/" } } From b6f892f66554e9a80e6cb39cdf0712fe91481551 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 16:36:01 +0200 Subject: [PATCH 326/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 nubox/symfony-webpack-php-generator/1.0/manifest.json diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json new file mode 100644 index 00000000..9e9f3c62 --- /dev/null +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -0,0 +1,5 @@ +{ + "bundles": { + "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] + } +} \ No newline at end of file From 30463d650feb0de909248808d1cea041c74a4d29 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 16:39:44 +0200 Subject: [PATCH 327/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 9e9f3c62..89bf3ba1 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -2,4 +2,4 @@ "bundles": { "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] } -} \ No newline at end of file +} From 1875b4b0fbef35befc42a4230075e254fee21443 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 16:42:37 +0200 Subject: [PATCH 328/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 89bf3ba1..bd996c45 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -1,5 +1,8 @@ { "bundles": { "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] + }, + "composer-scripts": { + "nubox:webpack:config:apply -l": "symfony-cmd" } } From 7b886379d954c18003c527839d35e6409469f4f1 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 16:49:24 +0200 Subject: [PATCH 329/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index bd996c45..7e6948eb 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,6 +3,6 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply -l": "symfony-cmd" + "nubox:webpack:config:apply": "symfony-cmd" } } From a962cf0b870331724240c039efa3d08c575c228c Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 16:52:32 +0200 Subject: [PATCH 330/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 7e6948eb..73839e51 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,6 +3,9 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply": "symfony-cmd" - } + "nubox:webpack:config:apply -l": "symfony-cmd" + }, + "gitignore": [ + "webpack.config.js.bak" + ] } From a4d155fb23621a080b0ec0e69aad9648b40fbb82 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 17:01:45 +0200 Subject: [PATCH 331/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 73839e51..b8de7c0b 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,7 +3,7 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply -l": "symfony-cmd" + "nubox:webpack:config:apply": "symfony-cmd" }, "gitignore": [ "webpack.config.js.bak" From 0460fb1aa51ce295df9ca91f111433878230bad5 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 19:19:58 +0200 Subject: [PATCH 332/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index b8de7c0b..95a23c51 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,7 +3,7 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply": "symfony-cmd" + "nubox:webpack:config:apply -l --no-config-allowed": "symfony-cmd" }, "gitignore": [ "webpack.config.js.bak" From 9ddcd8b859a70fb4acc53b2e2f2ad0bc3249951b Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Sun, 28 Jun 2020 19:22:27 +0200 Subject: [PATCH 333/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 95a23c51..5e03a391 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,7 +3,7 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply -l --no-config-allowed": "symfony-cmd" + "nubox:webpack:config:apply --no-config-allowed": "symfony-cmd" }, "gitignore": [ "webpack.config.js.bak" From c90daeb6f9eb228674b4daae3f7c23e403fc5d85 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Mon, 29 Jun 2020 08:22:14 +0200 Subject: [PATCH 334/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 5e03a391..95a23c51 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,7 +3,7 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply --no-config-allowed": "symfony-cmd" + "nubox:webpack:config:apply -l --no-config-allowed": "symfony-cmd" }, "gitignore": [ "webpack.config.js.bak" From 475d2623bbb5220b94723a75ba0dd6f8e961aa18 Mon Sep 17 00:00:00 2001 From: Sebastian Hopfe Date: Mon, 29 Jun 2020 08:43:25 +0200 Subject: [PATCH 335/394] NuBox - Symfony WebPack PHP Generator --- nubox/symfony-webpack-php-generator/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nubox/symfony-webpack-php-generator/1.0/manifest.json b/nubox/symfony-webpack-php-generator/1.0/manifest.json index 95a23c51..5e03a391 100644 --- a/nubox/symfony-webpack-php-generator/1.0/manifest.json +++ b/nubox/symfony-webpack-php-generator/1.0/manifest.json @@ -3,7 +3,7 @@ "NuBox\\WebPack\\Generator\\SymfonyWebpackPHPGeneratorBundle": ["all"] }, "composer-scripts": { - "nubox:webpack:config:apply -l --no-config-allowed": "symfony-cmd" + "nubox:webpack:config:apply --no-config-allowed": "symfony-cmd" }, "gitignore": [ "webpack.config.js.bak" From 9d62549b82b18d78e4d885471f662bbf24a43a90 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 13:56:26 +0200 Subject: [PATCH 336/394] Add recipe for connectholland/timchimp-bundle --- connectholland/timchimp-bundle/1.0/manifest.json | 10 ++++++++++ connectholland/timchimp-bundle/1.0/post-install.txt | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 connectholland/timchimp-bundle/1.0/manifest.json create mode 100644 connectholland/timchimp-bundle/1.0/post-install.txt diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timchimp-bundle/1.0/manifest.json new file mode 100644 index 00000000..281e13b6 --- /dev/null +++ b/connectholland/timchimp-bundle/1.0/manifest.json @@ -0,0 +1,10 @@ +{ + "bundles": { + "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"], + "ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": ["all"] + }, + "env": { + "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" + }, + "aliases": ["timechimp", "connectholland-timechimp"] +} diff --git a/connectholland/timchimp-bundle/1.0/post-install.txt b/connectholland/timchimp-bundle/1.0/post-install.txt new file mode 100644 index 00000000..2009c2ae --- /dev/null +++ b/connectholland/timchimp-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + To finish the install + + + * Your Connect Holland Timechimp bundle installation is almost ready: + 1. Add your Timechimp Access Token to the .env file From b3fb2fdf5ec36174c924d282dcdd07220bffe6e6 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 13:58:16 +0200 Subject: [PATCH 337/394] Remove aliases --- connectholland/timchimp-bundle/1.0/manifest.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timchimp-bundle/1.0/manifest.json index 281e13b6..be7dfa63 100644 --- a/connectholland/timchimp-bundle/1.0/manifest.json +++ b/connectholland/timchimp-bundle/1.0/manifest.json @@ -5,6 +5,5 @@ }, "env": { "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" - }, - "aliases": ["timechimp", "connectholland-timechimp"] + } } From d1cdeed73344bd8a7165fd128fd128a870964116 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Wed, 10 Jun 2020 14:00:13 +0200 Subject: [PATCH 338/394] Fix typo --- .../{timchimp-bundle => timechimp-bundle}/1.0/manifest.json | 0 .../{timchimp-bundle => timechimp-bundle}/1.0/post-install.txt | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename connectholland/{timchimp-bundle => timechimp-bundle}/1.0/manifest.json (100%) rename connectholland/{timchimp-bundle => timechimp-bundle}/1.0/post-install.txt (100%) diff --git a/connectholland/timchimp-bundle/1.0/manifest.json b/connectholland/timechimp-bundle/1.0/manifest.json similarity index 100% rename from connectholland/timchimp-bundle/1.0/manifest.json rename to connectholland/timechimp-bundle/1.0/manifest.json diff --git a/connectholland/timchimp-bundle/1.0/post-install.txt b/connectholland/timechimp-bundle/1.0/post-install.txt similarity index 100% rename from connectholland/timchimp-bundle/1.0/post-install.txt rename to connectholland/timechimp-bundle/1.0/post-install.txt From 0240dd18d5765e3607e76d3423f8e08f26260ca3 Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Mon, 29 Jun 2020 15:24:14 +0200 Subject: [PATCH 339/394] Add configuration --- .../1.0/config/packages/connectholland_timechimp.yaml | 2 ++ connectholland/timechimp-bundle/1.0/manifest.json | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml diff --git a/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml new file mode 100644 index 00000000..6f608c09 --- /dev/null +++ b/connectholland/timechimp-bundle/1.0/config/packages/connectholland_timechimp.yaml @@ -0,0 +1,2 @@ +connectholland_timechimp: + api_key: '%env(string:TIMECHIMP_ACCESS_TOKEN)%' diff --git a/connectholland/timechimp-bundle/1.0/manifest.json b/connectholland/timechimp-bundle/1.0/manifest.json index be7dfa63..2565f3bb 100644 --- a/connectholland/timechimp-bundle/1.0/manifest.json +++ b/connectholland/timechimp-bundle/1.0/manifest.json @@ -1,8 +1,10 @@ { "bundles": { - "Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"], "ConnectHolland\\TimechimpBundle\\ConnecthollandTimechimpBundle": ["all"] }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, "env": { "TIMECHIMPBUNDLE_ACCESS_TOKEN": "baerer-token-value" } From 7857ada848f0d2344e1fb69c717e7e325dc1ebca Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Thu, 18 Jun 2020 10:12:45 +0200 Subject: [PATCH 340/394] Add recipe for connectholland/uptime-robot-bundle --- connectholland/uptime-robot-bundle/1.0/manifest.json | 8 ++++++++ connectholland/uptime-robot-bundle/1.0/post-install.txt | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 connectholland/uptime-robot-bundle/1.0/manifest.json create mode 100644 connectholland/uptime-robot-bundle/1.0/post-install.txt diff --git a/connectholland/uptime-robot-bundle/1.0/manifest.json b/connectholland/uptime-robot-bundle/1.0/manifest.json new file mode 100644 index 00000000..8b41d73c --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "ConnectHolland\\UptimeRobotBundle\\ConnecthollandUptimeRobotBundle": ["all"] + }, + "env": { + "UPTIMEROBOT_API_KEY": "api_key" + } +} diff --git a/connectholland/uptime-robot-bundle/1.0/post-install.txt b/connectholland/uptime-robot-bundle/1.0/post-install.txt new file mode 100644 index 00000000..0dc30dc7 --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/post-install.txt @@ -0,0 +1,6 @@ + + To finish the install + + + * Your Connect Holland Uptime Robot bundle installation is almost ready: + 1. Add your Uptime Robot Api Key to the .env file From 7a8e389dcdd2aef7cda51cd469df9cff2d37581e Mon Sep 17 00:00:00 2001 From: Reyo Stallenberg Date: Mon, 29 Jun 2020 15:57:25 +0200 Subject: [PATCH 341/394] Add configuration --- .../1.0/config/packages/connectholland_uptime_robot.yaml | 2 ++ connectholland/uptime-robot-bundle/1.0/manifest.json | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml diff --git a/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml b/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml new file mode 100644 index 00000000..093d1d1c --- /dev/null +++ b/connectholland/uptime-robot-bundle/1.0/config/packages/connectholland_uptime_robot.yaml @@ -0,0 +1,2 @@ +connectholland_uptime_robot: + api_key: '%env(string:UPTIMEROBOT_API_KEY)%' diff --git a/connectholland/uptime-robot-bundle/1.0/manifest.json b/connectholland/uptime-robot-bundle/1.0/manifest.json index 8b41d73c..c533f7b2 100644 --- a/connectholland/uptime-robot-bundle/1.0/manifest.json +++ b/connectholland/uptime-robot-bundle/1.0/manifest.json @@ -2,6 +2,9 @@ "bundles": { "ConnectHolland\\UptimeRobotBundle\\ConnecthollandUptimeRobotBundle": ["all"] }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, "env": { "UPTIMEROBOT_API_KEY": "api_key" } From a03697f3a98d5629eedd652f9760c21fa99699ad Mon Sep 17 00:00:00 2001 From: Clemens Krack Date: Mon, 29 Jun 2020 23:42:17 +0200 Subject: [PATCH 342/394] docs: Update comment with link --- .../optimus-bundle/0.1/config/packages/ckrack_optimus.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml b/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml index f791ac29..bd001f4d 100644 --- a/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml +++ b/ckrack/optimus-bundle/0.1/config/packages/ckrack_optimus.yaml @@ -1,12 +1,7 @@ ckrack_optimus: - - # Large prime number lower than 2147483647 + # Set options, as documented at https://github.com/jenssegers/optimus#usage prime: "%env(int:OPTIMUS_PRIME)%" - - # The inverse prime so that (PRIME * INVERSE) & MAXID == 1 inverse: "%env(int:OPTIMUS_INVERSE)%" - - # A large random integer lower than 2147483647 random: "%env(int:OPTIMUS_RANDOM)%" # if set to true, param converter will continue with the next available param converters From 84fa21a93d7aef34264073f04a315f92bc327c73 Mon Sep 17 00:00:00 2001 From: Vincent Chalamon Date: Wed, 1 Jul 2020 14:24:56 +0200 Subject: [PATCH 343/394] Add missing routing from gheb/docusign-bundle --- gheb/docusign-bundle/5.0/config/routes/docusign.yaml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 gheb/docusign-bundle/5.0/config/routes/docusign.yaml diff --git a/gheb/docusign-bundle/5.0/config/routes/docusign.yaml b/gheb/docusign-bundle/5.0/config/routes/docusign.yaml new file mode 100644 index 00000000..2da52336 --- /dev/null +++ b/gheb/docusign-bundle/5.0/config/routes/docusign.yaml @@ -0,0 +1,3 @@ +docusign: + resource: . + type: docusign From 110d030cc3e5f0f0e407bd926f5f05649e8286ef Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Tue, 14 Jul 2020 15:27:15 +0200 Subject: [PATCH 344/394] Add flex recipe for SuluArticleBundle --- .../2.0/config/packages/ongr_elasticsearch.yaml | 8 ++++++++ .../2.0/config/packages/sulu_article.yaml | 16 ++++++++++++++++ .../2.0/config/routes/sulu_article_admin.yaml | 4 ++++ sulu/article-bundle/2.0/manifest.json | 16 ++++++++++++++++ sulu/article-bundle/2.0/post-install.txt | 11 +++++++++++ 5 files changed, 55 insertions(+) create mode 100644 sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml create mode 100644 sulu/article-bundle/2.0/config/packages/sulu_article.yaml create mode 100644 sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml create mode 100644 sulu/article-bundle/2.0/manifest.json create mode 100644 sulu/article-bundle/2.0/post-install.txt diff --git a/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml b/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml new file mode 100644 index 00000000..635ed98c --- /dev/null +++ b/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml @@ -0,0 +1,8 @@ +ongr_elasticsearch: + analysis: + tokenizer: + pathTokenizer: + type: path_hierarchy + analyzer: + pathAnalyzer: + tokenizer: pathTokenizer diff --git a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml new file mode 100644 index 00000000..d5b2eeb0 --- /dev/null +++ b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml @@ -0,0 +1,16 @@ +sulu_article: + index_name: '%env(resolve:ELASTICSEARCH_INDEX)%' + hosts: + - '%env(resolve:ELASTICSEARCH_HOST)%' + +sulu_route: + mappings: + Sulu\Bundle\ArticleBundle\Document\ArticleDocument: + generator: schema + options: + route_schema: /articles/{object.getTitle()} + Sulu\Bundle\ArticleBundle\Document\ArticlePageDocument: + generator: article_page + options: + route_schema: {translator.trans("page")}-{object.getPageNumber()} + parent: {object.getParent().getRoutePath()} diff --git a/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml b/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml new file mode 100644 index 00000000..2fb93645 --- /dev/null +++ b/sulu/article-bundle/2.0/config/routes/sulu_article_admin.yaml @@ -0,0 +1,4 @@ +sulu_article_api: + resource: '@SuluArticleBundle/Resources/config/routing_api.yml' + type: rest + prefix: /admin/api diff --git a/sulu/article-bundle/2.0/manifest.json b/sulu/article-bundle/2.0/manifest.json new file mode 100644 index 00000000..f3b28e94 --- /dev/null +++ b/sulu/article-bundle/2.0/manifest.json @@ -0,0 +1,16 @@ +{ + "bundles": { + "Sulu\\Bundle\\ArticleBundle\\SuluArticleBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "copy-from-package": { + "Resources/doc/default.xml": "%CONFIG_DIR%/templates/articles/default.xml", + "Resources/doc/default.html.twig": "templates/articles/default.xml" + }, + "env": { + "ELASTICSEARCH_HOST": "127.0.0.1:9200", + "ELASTICSEARCH_INDEX": "" + } +} diff --git a/sulu/article-bundle/2.0/post-install.txt b/sulu/article-bundle/2.0/post-install.txt new file mode 100644 index 00000000..bfe4e617 --- /dev/null +++ b/sulu/article-bundle/2.0/post-install.txt @@ -0,0 +1,11 @@ + + What's next? + + + * The SuluArticleBundle is almost ready: + 1. Configure elasticsearch host and index in the .env file. + 2. Initialize PHPCR by running php bin/console sulu:document:init. + 3. Create the elasticsearch indices by running php bin/console ongr:es:index:create and php bin/console ongr:es:index:create --manager live. + 4. Make sure your user has all the necessary permissions for the SuluArticleBundle. + + * Read the documentation at https://github.com/sulu/SuluArticleBundle/blob/master/Resources/doc/README.md From 93e5b36eb494b2511fe85c0963f811fa4abb8a43 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Tue, 14 Jul 2020 15:47:32 +0200 Subject: [PATCH 345/394] fix ci --- sulu/article-bundle/2.0/config/packages/sulu_article.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml index d5b2eeb0..9e05c220 100644 --- a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml +++ b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml @@ -8,9 +8,9 @@ sulu_route: Sulu\Bundle\ArticleBundle\Document\ArticleDocument: generator: schema options: - route_schema: /articles/{object.getTitle()} + route_schema: '/articles/{object.getTitle()}' Sulu\Bundle\ArticleBundle\Document\ArticlePageDocument: generator: article_page options: - route_schema: {translator.trans("page")}-{object.getPageNumber()} - parent: {object.getParent().getRoutePath()} + route_schema: '{translator.trans("page")}-{object.getPageNumber()}' + parent: '{object.getParent().getRoutePath()}' From 650b8755a484059a290bb9b8c582ebeca5ad2b12 Mon Sep 17 00:00:00 2001 From: Laurent Georget Date: Thu, 9 Jul 2020 16:07:51 +0200 Subject: [PATCH 346/394] Create recipe for MeteoConcept/HCaptchaBundle --- .../1.0/config/meteo_concept_hcaptcha.yaml | 4 ++++ meteo-concept/hcaptcha-bundle/1.0/manifest.json | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml create mode 100644 meteo-concept/hcaptcha-bundle/1.0/manifest.json diff --git a/meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml b/meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml new file mode 100644 index 00000000..3cb42336 --- /dev/null +++ b/meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml @@ -0,0 +1,4 @@ +meteo_concept_hcaptcha: + hcaptcha: + site_key: 10000000-ffff-ffff-ffff-000000000001 + secret: '%env(resolve:HCAPTCHA_SECRET)%' diff --git a/meteo-concept/hcaptcha-bundle/1.0/manifest.json b/meteo-concept/hcaptcha-bundle/1.0/manifest.json new file mode 100644 index 00000000..51c48a63 --- /dev/null +++ b/meteo-concept/hcaptcha-bundle/1.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "MeteoConcept\\HCaptchaBundle\\MeteoConceptHCaptchaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "HCAPTCHA_SECRET": "0x0000000000000000000000000000000000000000" + } +} From 052281ce2bfff6945981e95d2a809afc01b19b73 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Sun, 19 Jul 2020 11:26:12 +0200 Subject: [PATCH 347/394] Delete ongr_elasticsearch.yaml --- .../2.0/config/packages/ongr_elasticsearch.yaml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml diff --git a/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml b/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml deleted file mode 100644 index 635ed98c..00000000 --- a/sulu/article-bundle/2.0/config/packages/ongr_elasticsearch.yaml +++ /dev/null @@ -1,8 +0,0 @@ -ongr_elasticsearch: - analysis: - tokenizer: - pathTokenizer: - type: path_hierarchy - analyzer: - pathAnalyzer: - tokenizer: pathTokenizer From cd2ef687c95c07b18bec1b917583f1e729fdf0c6 Mon Sep 17 00:00:00 2001 From: Laurent Georget Date: Sun, 19 Jul 2020 13:08:35 +0200 Subject: [PATCH 348/394] Move the config file to the proper packages subdirectory --- .../1.0/config/{ => packages}/meteo_concept_hcaptcha.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename meteo-concept/hcaptcha-bundle/1.0/config/{ => packages}/meteo_concept_hcaptcha.yaml (100%) diff --git a/meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml b/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_hcaptcha.yaml similarity index 100% rename from meteo-concept/hcaptcha-bundle/1.0/config/meteo_concept_hcaptcha.yaml rename to meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_hcaptcha.yaml From 956288e30be02cb7a4d70accb6e92059da26eff7 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Tue, 30 Jun 2020 01:31:39 -0300 Subject: [PATCH 349/394] Add recipe for "sonata-project/form-extensions:1.0" --- .../form-extensions/1.0/config/packages/sonata_form.yaml | 2 ++ sonata-project/form-extensions/1.0/manifest.json | 8 ++++++++ .../form-extensions/1.4/config/packages/sonata_form.yaml | 1 + sonata-project/form-extensions/1.4/manifest.json | 8 ++++++++ 4 files changed, 19 insertions(+) create mode 100644 sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml create mode 100644 sonata-project/form-extensions/1.0/manifest.json create mode 120000 sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml create mode 100644 sonata-project/form-extensions/1.4/manifest.json diff --git a/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml b/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml new file mode 100644 index 00000000..d540e7f4 --- /dev/null +++ b/sonata-project/form-extensions/1.0/config/packages/sonata_form.yaml @@ -0,0 +1,2 @@ +sonata_form: + form_type: standard diff --git a/sonata-project/form-extensions/1.0/manifest.json b/sonata-project/form-extensions/1.0/manifest.json new file mode 100644 index 00000000..def2dca5 --- /dev/null +++ b/sonata-project/form-extensions/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sonata\\Form\\Bridge\\Symfony\\Bundle\\SonataFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml b/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml new file mode 120000 index 00000000..9e999feb --- /dev/null +++ b/sonata-project/form-extensions/1.4/config/packages/sonata_form.yaml @@ -0,0 +1 @@ +../../../1.0/config/packages/sonata_form.yaml \ No newline at end of file diff --git a/sonata-project/form-extensions/1.4/manifest.json b/sonata-project/form-extensions/1.4/manifest.json new file mode 100644 index 00000000..35cb98a7 --- /dev/null +++ b/sonata-project/form-extensions/1.4/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sonata\\Form\\Bridge\\Symfony\\SonataFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From d73a183117fb730957083bf87375cad745190f77 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Mon, 20 Jul 2020 09:47:35 +0200 Subject: [PATCH 350/394] Update manifest.json --- sulu/article-bundle/2.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sulu/article-bundle/2.0/manifest.json b/sulu/article-bundle/2.0/manifest.json index f3b28e94..08ad8ca1 100644 --- a/sulu/article-bundle/2.0/manifest.json +++ b/sulu/article-bundle/2.0/manifest.json @@ -11,6 +11,6 @@ }, "env": { "ELASTICSEARCH_HOST": "127.0.0.1:9200", - "ELASTICSEARCH_INDEX": "" + "ELASTICSEARCH_INDEX": "su_articles" } } From 665c60535866f987820f450cbd56b412d6db6bd8 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <5764721+Saphyel@users.noreply.github.com> Date: Mon, 27 Jul 2020 16:29:32 +0100 Subject: [PATCH 351/394] Create manifest.json --- jsor/doctrine-postgis/1.7/manifest.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 jsor/doctrine-postgis/1.7/manifest.json diff --git a/jsor/doctrine-postgis/1.7/manifest.json b/jsor/doctrine-postgis/1.7/manifest.json new file mode 100644 index 00000000..e164c6e6 --- /dev/null +++ b/jsor/doctrine-postgis/1.7/manifest.json @@ -0,0 +1,5 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 62c447cf751a431ba4ccbf5ee556cdc04af7f734 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <5764721+Saphyel@users.noreply.github.com> Date: Mon, 27 Jul 2020 16:32:48 +0100 Subject: [PATCH 352/394] Create jsor_doctrine_postgis.yaml --- .../config/packages/jsor_doctrine_postgis.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml diff --git a/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml b/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml new file mode 100644 index 00000000..8b50a69c --- /dev/null +++ b/jsor/doctrine-postgis/1.7/config/packages/jsor_doctrine_postgis.yaml @@ -0,0 +1,15 @@ +services: + Jsor\Doctrine\PostGIS\Event\ORMSchemaEventSubscriber: + tags: [{ name: doctrine.event_subscriber, connection: default }] + +doctrine: + dbal: + mapping_types: + _text: string + types: + geometry: 'Jsor\Doctrine\PostGIS\Types\GeometryType' + orm: + dql: + string_functions: + ST_AsGeoJSON: 'Jsor\Doctrine\PostGIS\Functions\ST_AsGeoJSON' + ST_GeomFromGeoJSON: 'Jsor\Doctrine\PostGIS\Functions\ST_GeomFromGeoJSON' From 572f2186a7782ebd65498a10d4a0f60902aed83c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 7 Aug 2020 13:26:22 +0200 Subject: [PATCH 353/394] Add support for Symfony Connect --- .../connect/7.0/config/packages/symfony_connect.yaml | 6 ++++++ .../connect/7.0/config/routes/symfony_connect.yaml | 3 +++ symfonycorp/connect/7.0/manifest.json | 12 ++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 symfonycorp/connect/7.0/config/packages/symfony_connect.yaml create mode 100644 symfonycorp/connect/7.0/config/routes/symfony_connect.yaml create mode 100644 symfonycorp/connect/7.0/manifest.json diff --git a/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml b/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml new file mode 100644 index 00000000..5b4b880c --- /dev/null +++ b/symfonycorp/connect/7.0/config/packages/symfony_connect.yaml @@ -0,0 +1,6 @@ +symfony_connect: + app_id: '%env(SYMFONY_CONNECT_APP_ID)%' + app_secret: '%env(SYMFONY_CONNECT_APP_SECRET)%' + scope: 'SCOPE_PUBLIC' + # start_template: null + # failure_template: null diff --git a/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml b/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml new file mode 100644 index 00000000..4a595b70 --- /dev/null +++ b/symfonycorp/connect/7.0/config/routes/symfony_connect.yaml @@ -0,0 +1,3 @@ +symfony_connect: + prefix: /connect + resource: '@SymfonyConnectBundle/Resources/config/routing/connect.xml' diff --git a/symfonycorp/connect/7.0/manifest.json b/symfonycorp/connect/7.0/manifest.json new file mode 100644 index 00000000..dd7cd3d7 --- /dev/null +++ b/symfonycorp/connect/7.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "SymfonyCorp\\Connect\\SymfonyConnectBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%" + }, + "env": { + "SYMFONY_CONNECT_APP_ID": "", + "SYMFONY_CONNECT_APP_SECRET": "" + } +} From 9ab59080cebdafe23afc68458279ff37d209aa60 Mon Sep 17 00:00:00 2001 From: "Nek (Maxime Veber)" Date: Wed, 19 Aug 2020 15:39:17 +0200 Subject: [PATCH 354/394] feat: adding melodiia recipe --- .../melodiia/0.7/config/packages/melodiia.yaml | 6 ++++++ swag-industries/melodiia/0.7/manifest.json | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 swag-industries/melodiia/0.7/config/packages/melodiia.yaml create mode 100644 swag-industries/melodiia/0.7/manifest.json diff --git a/swag-industries/melodiia/0.7/config/packages/melodiia.yaml b/swag-industries/melodiia/0.7/config/packages/melodiia.yaml new file mode 100644 index 00000000..7d8774da --- /dev/null +++ b/swag-industries/melodiia/0.7/config/packages/melodiia.yaml @@ -0,0 +1,6 @@ +melodiia: + apis: + # Define as much APIs you want here + main: + # This path impacts the behavior of Melodiia. Change it if required + base_path: /api/v1 diff --git a/swag-industries/melodiia/0.7/manifest.json b/swag-industries/melodiia/0.7/manifest.json new file mode 100644 index 00000000..51b9f6ba --- /dev/null +++ b/swag-industries/melodiia/0.7/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "SwagIndustries\\Melodiia\\MelodiiaBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 97d81d108e9b54e59d0c821c0bbf6debc4f8bcd2 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Mon, 24 Aug 2020 11:26:44 +0200 Subject: [PATCH 355/394] Fix review --- .../2.0/config/packages/sulu_article.yaml | 12 ++++++++++++ sulu/article-bundle/2.0/manifest.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml index 9e05c220..c9b17ed0 100644 --- a/sulu/article-bundle/2.0/config/packages/sulu_article.yaml +++ b/sulu/article-bundle/2.0/config/packages/sulu_article.yaml @@ -2,6 +2,9 @@ sulu_article: index_name: '%env(resolve:ELASTICSEARCH_INDEX)%' hosts: - '%env(resolve:ELASTICSEARCH_HOST)%' + types: + article: + translation_key: "sulu_article.article" sulu_route: mappings: @@ -14,3 +17,12 @@ sulu_route: options: route_schema: '{translator.trans("page")}-{object.getPageNumber()}' parent: '{object.getParent().getRoutePath()}' + +ongr_elasticsearch: + analysis: + tokenizer: + pathTokenizer: + type: path_hierarchy + analyzer: + pathAnalyzer: + tokenizer: pathTokenizer diff --git a/sulu/article-bundle/2.0/manifest.json b/sulu/article-bundle/2.0/manifest.json index 08ad8ca1..a340517d 100644 --- a/sulu/article-bundle/2.0/manifest.json +++ b/sulu/article-bundle/2.0/manifest.json @@ -7,7 +7,7 @@ }, "copy-from-package": { "Resources/doc/default.xml": "%CONFIG_DIR%/templates/articles/default.xml", - "Resources/doc/default.html.twig": "templates/articles/default.xml" + "Resources/doc/default.html.twig": "templates/articles/default.html.twig" }, "env": { "ELASTICSEARCH_HOST": "127.0.0.1:9200", From 8927f730c2ab466bf46bd7640a097f1574d1e4e4 Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 27 Aug 2020 13:32:15 +0100 Subject: [PATCH 356/394] Added ise-web-security-bundle flex recipe --- .../config/packages/ise_web_security.yaml | 13 +++++++++++++ .../ise-web-security-bundle/manifest.json | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml create mode 100644 googlechromelabs/ise-web-security-bundle/manifest.json diff --git a/googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml b/googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml new file mode 100644 index 00000000..c54a4321 --- /dev/null +++ b/googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml @@ -0,0 +1,13 @@ +ise_web_security: + defaults: + coop: + active: true + policy: 'same-origin' + coep: + active: true + policy: 'require-corp' + fetch_metadata: + active: true + allowed_endpoints: [] + trusted_types: + enabled: false diff --git a/googlechromelabs/ise-web-security-bundle/manifest.json b/googlechromelabs/ise-web-security-bundle/manifest.json new file mode 100644 index 00000000..f263c61b --- /dev/null +++ b/googlechromelabs/ise-web-security-bundle/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Ise\\WebSecurityBundle\\IseWbeSecurityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 1d131747146b0dfff580dfb376e6ad62dfe26069 Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 27 Aug 2020 15:01:56 +0100 Subject: [PATCH 357/394] Added 1.0 --- .../{ => 1.0}/config/packages/ise_web_security.yaml | 0 googlechromelabs/ise-web-security-bundle/{ => 1.0}/manifest.json | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename googlechromelabs/ise-web-security-bundle/{ => 1.0}/config/packages/ise_web_security.yaml (100%) rename googlechromelabs/ise-web-security-bundle/{ => 1.0}/manifest.json (100%) diff --git a/googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml similarity index 100% rename from googlechromelabs/ise-web-security-bundle/config/packages/ise_web_security.yaml rename to googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml diff --git a/googlechromelabs/ise-web-security-bundle/manifest.json b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json similarity index 100% rename from googlechromelabs/ise-web-security-bundle/manifest.json rename to googlechromelabs/ise-web-security-bundle/1.0/manifest.json From c05ae4cd6d571705a175498fc67454a66d690af0 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Fri, 28 Aug 2020 12:26:23 +0200 Subject: [PATCH 358/394] Add flex recipe for SuluFormBundle --- sulu/form-bundle/2.0/config/packages/sulu_form.yaml | 9 +++++++++ .../form-bundle/2.0/config/routes/sulu_form_admin.yaml | 4 ++++ sulu/form-bundle/2.0/manifest.json | 8 ++++++++ sulu/form-bundle/2.0/post-install.txt | 10 ++++++++++ 4 files changed, 31 insertions(+) create mode 100644 sulu/form-bundle/2.0/config/packages/sulu_form.yaml create mode 100644 sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml create mode 100644 sulu/form-bundle/2.0/manifest.json create mode 100644 sulu/form-bundle/2.0/post-install.txt diff --git a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml new file mode 100644 index 00000000..13a31bd7 --- /dev/null +++ b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml @@ -0,0 +1,9 @@ +sulu_form: + mail: + from: "%sulu_admin.email%" + to: "%sulu_admin.email%" + sender: "%sulu_admin.email%" + +framework: + esi: true + fragments: true diff --git a/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml b/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml new file mode 100644 index 00000000..bac30391 --- /dev/null +++ b/sulu/form-bundle/2.0/config/routes/sulu_form_admin.yaml @@ -0,0 +1,4 @@ +sulu_form_api: + resource: "@SuluFormBundle/Resources/config/routing_api.yml" + type: rest + prefix: /admin/api diff --git a/sulu/form-bundle/2.0/manifest.json b/sulu/form-bundle/2.0/manifest.json new file mode 100644 index 00000000..ad6597fe --- /dev/null +++ b/sulu/form-bundle/2.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sulu\\Bundle\\FormBundle\\SuluFormBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sulu/form-bundle/2.0/post-install.txt b/sulu/form-bundle/2.0/post-install.txt new file mode 100644 index 00000000..1209702a --- /dev/null +++ b/sulu/form-bundle/2.0/post-install.txt @@ -0,0 +1,10 @@ + + What's next? + + + * The SuluFormBundle is almost ready: + 1. Print the sql statements required to update your database schema by running php bin/console doctrine:schema:update --dump-sql. + 2. If the statements look fine to you, run the same command using --force to execute them. + 3. Make sure your user has all the necessary permissions for the SuluFormBundle. + + * Read the documentation at https://github.com/sulu/SuluFormBundle/blob/master/Resources/doc/index.md From 2008f1fd031e1d53548d1395f891c0c04397bdc3 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Fri, 28 Aug 2020 12:38:49 +0200 Subject: [PATCH 359/394] fix recipe --- sulu/form-bundle/2.0/config/packages/sulu_form.yaml | 6 +++--- sulu/form-bundle/2.0/manifest.json | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml index 13a31bd7..ab747b8c 100644 --- a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml +++ b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml @@ -1,8 +1,8 @@ sulu_form: mail: - from: "%sulu_admin.email%" - to: "%sulu_admin.email%" - sender: "%sulu_admin.email%" + from: "%env(resolve:SULU_FORM_EMAIL_FROM)%" + to: "%env(resolve:SULU_FORM_EMAIL_TO)%" + sender: "%env(resolve:SULU_FORM_EMAIL_SENDER)%" framework: esi: true diff --git a/sulu/form-bundle/2.0/manifest.json b/sulu/form-bundle/2.0/manifest.json index ad6597fe..db52d3de 100644 --- a/sulu/form-bundle/2.0/manifest.json +++ b/sulu/form-bundle/2.0/manifest.json @@ -4,5 +4,10 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" + }, + "env": { + "SULU_FORM_EMAIL_FROM": "", + "SULU_FORM_EMAIL_TO": "", + "SULU_FORM_EMAIL_SENDER": "" } } From 2e1614c696b05344f8291f7de7c967764bf5a709 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Fri, 28 Aug 2020 12:45:37 +0200 Subject: [PATCH 360/394] fix recipe --- sulu/form-bundle/2.0/config/packages/sulu_form.yaml | 6 +++--- sulu/form-bundle/2.0/manifest.json | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml index ab747b8c..345b99de 100644 --- a/sulu/form-bundle/2.0/config/packages/sulu_form.yaml +++ b/sulu/form-bundle/2.0/config/packages/sulu_form.yaml @@ -1,8 +1,8 @@ sulu_form: mail: - from: "%env(resolve:SULU_FORM_EMAIL_FROM)%" - to: "%env(resolve:SULU_FORM_EMAIL_TO)%" - sender: "%env(resolve:SULU_FORM_EMAIL_SENDER)%" + from: "%env(SULU_ADMIN_EMAIL)%" + to: "%env(SULU_ADMIN_EMAIL)%" + sender: "%env(SULU_ADMIN_EMAIL)%" framework: esi: true diff --git a/sulu/form-bundle/2.0/manifest.json b/sulu/form-bundle/2.0/manifest.json index db52d3de..ad6597fe 100644 --- a/sulu/form-bundle/2.0/manifest.json +++ b/sulu/form-bundle/2.0/manifest.json @@ -4,10 +4,5 @@ }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" - }, - "env": { - "SULU_FORM_EMAIL_FROM": "", - "SULU_FORM_EMAIL_TO": "", - "SULU_FORM_EMAIL_SENDER": "" } } From 62b6b46683a0108c0a2cb34b094367ff08259a02 Mon Sep 17 00:00:00 2001 From: Luca Rath-Heel Date: Fri, 28 Aug 2020 12:59:57 +0200 Subject: [PATCH 361/394] Add flex recipe for SuluHeadlessBundle --- .../0.1/config/routes/sulu_headless_website.yaml | 3 +++ sulu/headless-bundle/0.1/manifest.json | 8 ++++++++ sulu/headless-bundle/0.1/post-install.txt | 7 +++++++ 3 files changed, 18 insertions(+) create mode 100644 sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml create mode 100644 sulu/headless-bundle/0.1/manifest.json create mode 100644 sulu/headless-bundle/0.1/post-install.txt diff --git a/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml b/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml new file mode 100644 index 00000000..cef3d711 --- /dev/null +++ b/sulu/headless-bundle/0.1/config/routes/sulu_headless_website.yaml @@ -0,0 +1,3 @@ +sulu_headless: + type: portal + resource: "@SuluHeadlessBundle/Resources/config/routing_website.yml" diff --git a/sulu/headless-bundle/0.1/manifest.json b/sulu/headless-bundle/0.1/manifest.json new file mode 100644 index 00000000..34ee1106 --- /dev/null +++ b/sulu/headless-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Sulu\\Bundle\\HeadlessBundle\\SuluHeadlessBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/sulu/headless-bundle/0.1/post-install.txt b/sulu/headless-bundle/0.1/post-install.txt new file mode 100644 index 00000000..5f00756d --- /dev/null +++ b/sulu/headless-bundle/0.1/post-install.txt @@ -0,0 +1,7 @@ + + What's next? + + + * The SuluHeadlessBundle is almost ready: + Change the controller of your templates to Sulu\Bundle\HeadlessBundle\Controller\HeadlessWebsiteController::indexAction. + Read the documentation at https://github.com/sulu/SuluHeadlessBundle/blob/master/README.md to learn how. From 6cd63ec8b58455570daec2eecc9adc3599cc27e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20B=C3=B6ther?= Date: Mon, 31 Aug 2020 23:43:00 +0200 Subject: [PATCH 362/394] Add jbtcd fitbitd-bundle recipe --- .../fitbit-bundle/1.0/config/packages/fitbit.yaml | 15 +++++++++++++++ jbtcd/fitbit-bundle/1.0/manifest.json | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml create mode 100644 jbtcd/fitbit-bundle/1.0/manifest.json diff --git a/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml b/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml new file mode 100644 index 00000000..4dfb8fad --- /dev/null +++ b/jbtcd/fitbit-bundle/1.0/config/packages/fitbit.yaml @@ -0,0 +1,15 @@ +fitbit: + # Get client ID and Secret, register an app here: https://dev.fitbit.com/apps + clientId: '%env(FITBIT_CLIENT_ID)%' + clientSecret: '%env(FITBIT_CLIENT_SECRET)%' + # For available scopes, see here: https://dev.fitbit.com/build/reference/web-api/oauth2/#scope + scopes: + - activity + - heartrate + - location + - nutrition + - profile + - settings + - sleep + - social + - weight diff --git a/jbtcd/fitbit-bundle/1.0/manifest.json b/jbtcd/fitbit-bundle/1.0/manifest.json new file mode 100644 index 00000000..a53840be --- /dev/null +++ b/jbtcd/fitbit-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "FitbitBundle\\FitbitBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "FITBIT_CLIENT_ID": "not-a-real-id", + "FITBIT_CLIENT_SECRET": "not-a-real-secret" + } +} From 1064458a8a7a4106a0448847022cf14e246237ef Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 3 Sep 2020 10:07:13 +0100 Subject: [PATCH 363/394] Fixed spacing --- .../1.0/config/packages/ise_web_security.yaml | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml index c54a4321..a77d8529 100644 --- a/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml +++ b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml @@ -1,13 +1,13 @@ ise_web_security: - defaults: - coop: - active: true - policy: 'same-origin' - coep: - active: true - policy: 'require-corp' - fetch_metadata: - active: true - allowed_endpoints: [] - trusted_types: - enabled: false + defaults: + coop: + active: true + policy: 'same-origin' + coep: + active: true + policy: 'require-corp' + fetch_metadata: + active: true + allowed_endpoints: [] + trusted_types: + enabled: false From 98c90dd18db46bd15946e58ae9cc59c64b4a3c23 Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 3 Sep 2020 10:20:25 +0100 Subject: [PATCH 364/394] Fixed Typo --- googlechromelabs/ise-web-security-bundle/1.0/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlechromelabs/ise-web-security-bundle/1.0/manifest.json b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json index f263c61b..62e66858 100644 --- a/googlechromelabs/ise-web-security-bundle/1.0/manifest.json +++ b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "Ise\\WebSecurityBundle\\IseWbeSecurityBundle": ["all"] + "Ise\\WebSecurityBundle\\IseWebSecurityBundle": ["all"] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" From febfe230035fdd49b6294e2d8acfc4ed2f4b293d Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 3 Sep 2020 10:23:30 +0100 Subject: [PATCH 365/394] Fixed active --- .../1.0/config/packages/ise_web_security.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml index a77d8529..202188b4 100644 --- a/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml +++ b/googlechromelabs/ise-web-security-bundle/1.0/config/packages/ise_web_security.yaml @@ -10,4 +10,4 @@ ise_web_security: active: true allowed_endpoints: [] trusted_types: - enabled: false + active: false From 09e11c38d90399981208c5539a26223c4c06b7a7 Mon Sep 17 00:00:00 2001 From: Matthew Henry Date: Thu, 3 Sep 2020 10:52:47 +0100 Subject: [PATCH 366/394] Fixed manifest spacing --- .../ise-web-security-bundle/1.0/manifest.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/googlechromelabs/ise-web-security-bundle/1.0/manifest.json b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json index 62e66858..dae1c774 100644 --- a/googlechromelabs/ise-web-security-bundle/1.0/manifest.json +++ b/googlechromelabs/ise-web-security-bundle/1.0/manifest.json @@ -1,8 +1,8 @@ { - "bundles": { - "Ise\\WebSecurityBundle\\IseWebSecurityBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } + "bundles": { + "Ise\\WebSecurityBundle\\IseWebSecurityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } } From c21a7a4ab6583687d8a738b4a584513f99c707f6 Mon Sep 17 00:00:00 2001 From: Cedrick Oka Baidai Date: Thu, 3 Sep 2020 10:43:45 +0000 Subject: [PATCH 367/394] * Add a recipe for coka/pagination-bundle version 5.0. --- .../5.0/config/packages/oka_pagination.yaml | 4 ++++ coka/pagination-bundle/5.0/manifest.json | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml create mode 100644 coka/pagination-bundle/5.0/manifest.json diff --git a/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml b/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml new file mode 100644 index 00000000..15cd830f --- /dev/null +++ b/coka/pagination-bundle/5.0/config/packages/oka_pagination.yaml @@ -0,0 +1,4 @@ +oka_pagination: + db_driver: orm + twig: + enabled: false diff --git a/coka/pagination-bundle/5.0/manifest.json b/coka/pagination-bundle/5.0/manifest.json new file mode 100644 index 00000000..411770c8 --- /dev/null +++ b/coka/pagination-bundle/5.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Oka\\PaginationBundle\\OkaPaginationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From bdf80283ac3dd9326812579a01be8fabb9d2ff8e Mon Sep 17 00:00:00 2001 From: Romain Lebbadi-Breteau Date: Mon, 7 Sep 2020 18:37:11 +0200 Subject: [PATCH 368/394] Update and rename meteo_concept_hcaptcha.yaml to meteo_concept_h_captcha.yaml The package expects a meteo_concept_h_captcha.yaml file to exist instead of meteo_concept_hcaptcha.yaml --- ...meteo_concept_hcaptcha.yaml => meteo_concept_h_captcha.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meteo-concept/hcaptcha-bundle/1.0/config/packages/{meteo_concept_hcaptcha.yaml => meteo_concept_h_captcha.yaml} (82%) diff --git a/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_hcaptcha.yaml b/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml similarity index 82% rename from meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_hcaptcha.yaml rename to meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml index 3cb42336..0fb0344e 100644 --- a/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_hcaptcha.yaml +++ b/meteo-concept/hcaptcha-bundle/1.0/config/packages/meteo_concept_h_captcha.yaml @@ -1,4 +1,4 @@ -meteo_concept_hcaptcha: +meteo_concept_h_captcha: hcaptcha: site_key: 10000000-ffff-ffff-ffff-000000000001 secret: '%env(resolve:HCAPTCHA_SECRET)%' From 51d07ae018ef89599238df9eadf5a3f2bbfd4031 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Tue, 8 Sep 2020 07:14:39 +0100 Subject: [PATCH 369/394] add User entity and repository default file --- enigma972/user-bundle/0.3/manifest.json | 3 +- enigma972/user-bundle/0.3/src/Entity/User.php | 19 ++++++++ .../0.3/src/Repository/UserRepository.php | 45 +++++++++++++++++++ 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 enigma972/user-bundle/0.3/src/Entity/User.php create mode 100644 enigma972/user-bundle/0.3/src/Repository/UserRepository.php diff --git a/enigma972/user-bundle/0.3/manifest.json b/enigma972/user-bundle/0.3/manifest.json index 0a46bc79..72168388 100644 --- a/enigma972/user-bundle/0.3/manifest.json +++ b/enigma972/user-bundle/0.3/manifest.json @@ -3,6 +3,7 @@ "Enigma972\\UserBundle\\Enigma972UserBundle": ["all"] }, "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" } } diff --git a/enigma972/user-bundle/0.3/src/Entity/User.php b/enigma972/user-bundle/0.3/src/Entity/User.php new file mode 100644 index 00000000..8f1a8b9f --- /dev/null +++ b/enigma972/user-bundle/0.3/src/Entity/User.php @@ -0,0 +1,19 @@ +createQueryBuilder('u') + ->andWhere('u.exampleField = :val') + ->setParameter('val', $value) + ->orderBy('u.id', 'ASC') + ->setMaxResults(10) + ->getQuery() + ->getResult() + ; + } + */ + + /* + public function findOneBySomeField($value): ?User + { + return $this->createQueryBuilder('u') + ->andWhere('u.exampleField = :val') + ->setParameter('val', $value) + ->getQuery() + ->getOneOrNullResult() + ; + } + */ +} From 6c77f08ba7a1aa68936129be2610d65bb027fb35 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Tue, 8 Sep 2020 09:45:33 +0100 Subject: [PATCH 370/394] upgrade from v0.3 to v0.4 --- .../user-bundle/{0.3 => 0.4}/config/packages/enigma972_user.yaml | 0 .../user-bundle/{0.3 => 0.4}/config/routes/enigma972_user.yaml | 0 enigma972/user-bundle/{0.3 => 0.4}/manifest.json | 0 enigma972/user-bundle/{0.3 => 0.4}/post-install.txt | 0 enigma972/user-bundle/{0.3 => 0.4}/src/Entity/User.php | 0 .../user-bundle/{0.3 => 0.4}/src/Repository/UserRepository.php | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename enigma972/user-bundle/{0.3 => 0.4}/config/packages/enigma972_user.yaml (100%) rename enigma972/user-bundle/{0.3 => 0.4}/config/routes/enigma972_user.yaml (100%) rename enigma972/user-bundle/{0.3 => 0.4}/manifest.json (100%) rename enigma972/user-bundle/{0.3 => 0.4}/post-install.txt (100%) rename enigma972/user-bundle/{0.3 => 0.4}/src/Entity/User.php (100%) rename enigma972/user-bundle/{0.3 => 0.4}/src/Repository/UserRepository.php (100%) diff --git a/enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml b/enigma972/user-bundle/0.4/config/packages/enigma972_user.yaml similarity index 100% rename from enigma972/user-bundle/0.3/config/packages/enigma972_user.yaml rename to enigma972/user-bundle/0.4/config/packages/enigma972_user.yaml diff --git a/enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml b/enigma972/user-bundle/0.4/config/routes/enigma972_user.yaml similarity index 100% rename from enigma972/user-bundle/0.3/config/routes/enigma972_user.yaml rename to enigma972/user-bundle/0.4/config/routes/enigma972_user.yaml diff --git a/enigma972/user-bundle/0.3/manifest.json b/enigma972/user-bundle/0.4/manifest.json similarity index 100% rename from enigma972/user-bundle/0.3/manifest.json rename to enigma972/user-bundle/0.4/manifest.json diff --git a/enigma972/user-bundle/0.3/post-install.txt b/enigma972/user-bundle/0.4/post-install.txt similarity index 100% rename from enigma972/user-bundle/0.3/post-install.txt rename to enigma972/user-bundle/0.4/post-install.txt diff --git a/enigma972/user-bundle/0.3/src/Entity/User.php b/enigma972/user-bundle/0.4/src/Entity/User.php similarity index 100% rename from enigma972/user-bundle/0.3/src/Entity/User.php rename to enigma972/user-bundle/0.4/src/Entity/User.php diff --git a/enigma972/user-bundle/0.3/src/Repository/UserRepository.php b/enigma972/user-bundle/0.4/src/Repository/UserRepository.php similarity index 100% rename from enigma972/user-bundle/0.3/src/Repository/UserRepository.php rename to enigma972/user-bundle/0.4/src/Repository/UserRepository.php From 964f9482834221b8c80a79715d7f832564686a63 Mon Sep 17 00:00:00 2001 From: Joel Lusavuvu Date: Tue, 8 Sep 2020 10:44:03 +0100 Subject: [PATCH 371/394] add parent user class construct init --- enigma972/user-bundle/0.4/src/Entity/User.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/enigma972/user-bundle/0.4/src/Entity/User.php b/enigma972/user-bundle/0.4/src/Entity/User.php index 8f1a8b9f..58042e64 100644 --- a/enigma972/user-bundle/0.4/src/Entity/User.php +++ b/enigma972/user-bundle/0.4/src/Entity/User.php @@ -15,5 +15,8 @@ use Enigma972\UserBundle\Entity\User as BaseUser; */ class User extends BaseUser { - + public function __construct() + { + parent::__construct(); + } } From 85cee23503343d3373ad1d059c07fd516c34a691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81re=CC=81my=20Marodon?= Date: Fri, 28 Aug 2020 12:30:41 +0200 Subject: [PATCH 372/394] :sparkles: Add Klaviyo SDK recipe --- klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml | 5 +++++ klaviyo/php-sdk/2.0/manifest.json | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml create mode 100644 klaviyo/php-sdk/2.0/manifest.json diff --git a/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml b/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml new file mode 100644 index 00000000..6582fa95 --- /dev/null +++ b/klaviyo/php-sdk/2.0/config/packages/klaviyo.yaml @@ -0,0 +1,5 @@ +services: + Klaviyo\Klaviyo: + arguments: + $private_key: '%env(KLAVIYO_PRIVATE_KEY)%' + $public_key: '%env(KLAVIYO_PUBLIC_KEY)%' diff --git a/klaviyo/php-sdk/2.0/manifest.json b/klaviyo/php-sdk/2.0/manifest.json new file mode 100644 index 00000000..78fa94ae --- /dev/null +++ b/klaviyo/php-sdk/2.0/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "KLAVIYO_PUBLIC_KEY": "", + "KLAVIYO_PRIVATE_KEY": "" + } +} From 4c23669ca64e92c0a0d8755ffad6e487f5e16ecb Mon Sep 17 00:00:00 2001 From: hboie Date: Wed, 9 Sep 2020 21:46:44 +0200 Subject: [PATCH 373/394] second try --- .../1.1/config/packages/jasper_report.yaml | 5 +++++ hboie/jasper-report-bundle/1.1/manifest.json | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml create mode 100644 hboie/jasper-report-bundle/1.1/manifest.json diff --git a/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml b/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml new file mode 100644 index 00000000..73e8c625 --- /dev/null +++ b/hboie/jasper-report-bundle/1.1/config/packages/jasper_report.yaml @@ -0,0 +1,5 @@ +hboie_jasper_report: + host: 'http://localhost:8080/jasperserver' + username: '%env(HBOIE_JASPER_REPORT_USERNAME)%' + password: '%env(HBOIE_JASPER_REPORT_PASSWORD)%' + org_id: '%env(HBOIE_JASPER_REPORT_ORGID)%' diff --git a/hboie/jasper-report-bundle/1.1/manifest.json b/hboie/jasper-report-bundle/1.1/manifest.json new file mode 100644 index 00000000..f425f822 --- /dev/null +++ b/hboie/jasper-report-bundle/1.1/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Hboie\\JasperReportBundle\\HboieJasperReportBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "HBOIE_JASPER_REPORT_USERNAME": "jasperadmin", + "HBOIE_JASPER_REPORT_PASSWORD": "jasperadmin", + "HBOIE_JASPER_REPORT_ORGID": "" + } +} From 03fcd9e743d3ecb75b2d29b75a88b5383524ce96 Mon Sep 17 00:00:00 2001 From: Jeroen Thora Date: Fri, 11 Sep 2020 15:06:42 +0200 Subject: [PATCH 374/394] Kunstmaan/search-bundle: Setup parameter for ES7 support in v5.6 --- .../5.6/config/packages/kunstmaan_search.yaml | 8 ++++++++ kunstmaan/search-bundle/5.6/manifest.json | 11 +++++++++++ 2 files changed, 19 insertions(+) create mode 100644 kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml create mode 100644 kunstmaan/search-bundle/5.6/manifest.json diff --git a/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml b/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml new file mode 100644 index 00000000..199760f8 --- /dev/null +++ b/kunstmaan/search-bundle/5.6/config/packages/kunstmaan_search.yaml @@ -0,0 +1,8 @@ +# Default we set the used elasticsearch version to 7 in the "kunstmaan_search.elasticsearch_version" parameter. +# If you want to use Elasticsearch 6, change the value of the "kunstmaan_search.elasticsearch_version" parameter to "6" and run "composer req ruflin/elastica ^6.0" +kunstmaan_search: + connection: + driver: elastic_search + host: localhost + port: 9200 + index_prefix: myproject # TODO: Change this prefix to you liking. Maybe the name of your project diff --git a/kunstmaan/search-bundle/5.6/manifest.json b/kunstmaan/search-bundle/5.6/manifest.json new file mode 100644 index 00000000..31bf96d0 --- /dev/null +++ b/kunstmaan/search-bundle/5.6/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "Kunstmaan\\SearchBundle\\KunstmaanSearchBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "container": { + "kunstmaan_search.elasticsearch_version": "7" + } +} From 96d6c58a7a6177667515e56a1d0347fc42e69258 Mon Sep 17 00:00:00 2001 From: Gerhard Seidel Date: Fri, 25 Sep 2020 13:55:39 +0200 Subject: [PATCH 375/394] Add enhavo/app-bundle recipe --- .../assets/services/enhavo/enhavo_app.yaml | 4 ++++ enhavo/app-bundle/0.9/assets/theme/base.js | 1 + .../0.9/assets/theme/images/.gitignore | 0 .../0.9/assets/theme/styles/base.scss | 0 .../0.9/config/packages/enhavo_app.yaml | 2 ++ .../0.9/config/routes/enhavo_app.yaml | 3 +++ enhavo/app-bundle/0.9/manifest.json | 24 +++++++++++++++++++ enhavo/app-bundle/0.9/post-install.txt | 15 ++++++++++++ enhavo/app-bundle/0.9/public/build/.gitignore | 0 9 files changed, 49 insertions(+) create mode 100644 enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml create mode 100644 enhavo/app-bundle/0.9/assets/theme/base.js create mode 100644 enhavo/app-bundle/0.9/assets/theme/images/.gitignore create mode 100644 enhavo/app-bundle/0.9/assets/theme/styles/base.scss create mode 100644 enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml create mode 100644 enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml create mode 100644 enhavo/app-bundle/0.9/manifest.json create mode 100644 enhavo/app-bundle/0.9/post-install.txt create mode 100644 enhavo/app-bundle/0.9/public/build/.gitignore diff --git a/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml new file mode 100644 index 00000000..9d676bb1 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml @@ -0,0 +1,4 @@ +imports: + - + path: '@enhavo/app/services/*' + diff --git a/enhavo/app-bundle/0.9/assets/theme/base.js b/enhavo/app-bundle/0.9/assets/theme/base.js new file mode 100644 index 00000000..58717275 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/theme/base.js @@ -0,0 +1 @@ +import './styles/base.scss'; \ No newline at end of file diff --git a/enhavo/app-bundle/0.9/assets/theme/images/.gitignore b/enhavo/app-bundle/0.9/assets/theme/images/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/assets/theme/styles/base.scss b/enhavo/app-bundle/0.9/assets/theme/styles/base.scss new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml new file mode 100644 index 00000000..3fc734d8 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml @@ -0,0 +1,2 @@ +enhavo_app: + menu: diff --git a/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml new file mode 100644 index 00000000..a99a04d2 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml @@ -0,0 +1,3 @@ +enhavo_app_admin: + resource: "@EnhavoAppBundle/Resources/config/routing/admin.yml" + prefix: /admin diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json new file mode 100644 index 00000000..22eb4ab2 --- /dev/null +++ b/enhavo/app-bundle/0.9/manifest.json @@ -0,0 +1,24 @@ +{ + "bundles": { + "Enhavo\\Bundle\\AppBundle\\EnhavoAppBundle": ["all"] + }, + "container": { + "locale": "en" + }, + "env": { + "MAILER_FROM": "no-reply@email.com", + "MAILER_TO": "my@email.com", + "MAILER_NAME": "enhavo", + "MAILER_DELIVERY_ADDRESS": "my@email.com" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "assets/": "assets/", + "public/": "%PUBLIC_DIR%/" + }, + "gitignore": [ + "public/build/enhavo/*", + "public/build/theme/*", + "public/js/fos_routes.js" + ] +} diff --git a/enhavo/app-bundle/0.9/post-install.txt b/enhavo/app-bundle/0.9/post-install.txt new file mode 100644 index 00000000..1064db6b --- /dev/null +++ b/enhavo/app-bundle/0.9/post-install.txt @@ -0,0 +1,15 @@ + + Complete EnhavoAppBundle installation ... + + + * Update your package.json file + * Update your webpack.config.js file + * Update your configurations + * Add a tsconfig.json file + * Build your assets with + + $ yarn encore dev + $ yarn routes:dump + + Read more details about the steps: + https://docs.enhavo.com/book/app-bundle/installation.html diff --git a/enhavo/app-bundle/0.9/public/build/.gitignore b/enhavo/app-bundle/0.9/public/build/.gitignore new file mode 100644 index 00000000..e69de29b From 9a600c441a126a45bf8ef3b408ffe276fee664b5 Mon Sep 17 00:00:00 2001 From: Gerhard Seidel Date: Fri, 25 Sep 2020 18:17:39 +0200 Subject: [PATCH 376/394] Fix routes --- enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml index a99a04d2..77d516c0 100644 --- a/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml +++ b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml @@ -1,3 +1,3 @@ enhavo_app_admin: - resource: "@EnhavoAppBundle/Resources/config/routing/admin.yml" + resource: "@EnhavoAppBundle/Resources/config/routes/admin/*" prefix: /admin From 4f7c73d6b41b0446a49dafb7c9a037115c81055b Mon Sep 17 00:00:00 2001 From: Gerhard Seidel Date: Sat, 26 Sep 2020 18:26:30 +0200 Subject: [PATCH 377/394] Add tsconfig.json --- enhavo/app-bundle/0.9/manifest.json | 3 ++- enhavo/app-bundle/0.9/post-install.txt | 1 - enhavo/app-bundle/0.9/tsconfig.json | 16 ++++++++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 enhavo/app-bundle/0.9/tsconfig.json diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json index 22eb4ab2..6910c53a 100644 --- a/enhavo/app-bundle/0.9/manifest.json +++ b/enhavo/app-bundle/0.9/manifest.json @@ -14,7 +14,8 @@ "copy-from-recipe": { "config/": "%CONFIG_DIR%/", "assets/": "assets/", - "public/": "%PUBLIC_DIR%/" + "public/": "%PUBLIC_DIR%/", + "tsconfig.json": "tsconfig.json" }, "gitignore": [ "public/build/enhavo/*", diff --git a/enhavo/app-bundle/0.9/post-install.txt b/enhavo/app-bundle/0.9/post-install.txt index 1064db6b..bc001e89 100644 --- a/enhavo/app-bundle/0.9/post-install.txt +++ b/enhavo/app-bundle/0.9/post-install.txt @@ -5,7 +5,6 @@ * Update your package.json file * Update your webpack.config.js file * Update your configurations - * Add a tsconfig.json file * Build your assets with $ yarn encore dev diff --git a/enhavo/app-bundle/0.9/tsconfig.json b/enhavo/app-bundle/0.9/tsconfig.json new file mode 100644 index 00000000..65764146 --- /dev/null +++ b/enhavo/app-bundle/0.9/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "lib": [ "es2015", "dom" ], + "module": "amd", + "target": "es5", + "allowJs": true, + "noImplicitAny": true, + "suppressImplicitAnyIndexErrors": true, + "moduleResolution": "node", + "sourceMap": true, + "experimentalDecorators": true + }, + "include": [ + "./assets/**/*" + ] +} \ No newline at end of file From 9d3130acdcd802bb6425d9fbe9d640d989f87163 Mon Sep 17 00:00:00 2001 From: Gerhard Seidel Date: Sat, 26 Sep 2020 18:28:07 +0200 Subject: [PATCH 378/394] Fix validation --- enhavo/app-bundle/0.9/tsconfig.json | 30 ++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/enhavo/app-bundle/0.9/tsconfig.json b/enhavo/app-bundle/0.9/tsconfig.json index 65764146..794984fb 100644 --- a/enhavo/app-bundle/0.9/tsconfig.json +++ b/enhavo/app-bundle/0.9/tsconfig.json @@ -1,16 +1,16 @@ { - "compilerOptions": { - "lib": [ "es2015", "dom" ], - "module": "amd", - "target": "es5", - "allowJs": true, - "noImplicitAny": true, - "suppressImplicitAnyIndexErrors": true, - "moduleResolution": "node", - "sourceMap": true, - "experimentalDecorators": true - }, - "include": [ - "./assets/**/*" - ] -} \ No newline at end of file + "compilerOptions": { + "lib": [ "es2015", "dom" ], + "module": "amd", + "target": "es5", + "allowJs": true, + "noImplicitAny": true, + "suppressImplicitAnyIndexErrors": true, + "moduleResolution": "node", + "sourceMap": true, + "experimentalDecorators": true + }, + "include": [ + "./assets/**/*" + ] +} From 0ade8cf6efeed6272f17e2ff2b9cd35e1b62e967 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Wed, 30 Sep 2020 17:24:12 +0200 Subject: [PATCH 379/394] version 3.0 --- .../3.0/config/packages/lti1p3.yaml | 36 +++++++++++++++++++ .../3.0/config/routes/lti1p3.yaml | 11 ++++++ oat-sa/bundle-lti1p3/3.0/manifest.json | 11 ++++++ oat-sa/bundle-lti1p3/3.0/post-install.txt | 11 ++++++ 4 files changed, 69 insertions(+) create mode 100644 oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml create mode 100644 oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml create mode 100644 oat-sa/bundle-lti1p3/3.0/manifest.json create mode 100644 oat-sa/bundle-lti1p3/3.0/post-install.txt diff --git a/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml b/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml new file mode 100644 index 00000000..bb0fe88a --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/config/packages/lti1p3.yaml @@ -0,0 +1,36 @@ +lti1p3: + key_chains: + platformKey: + key_set_name: "platformSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + toolKey: + key_set_name: "toolSet" + public_key: "file://%kernel.project_dir%/config/secrets/dev/public.key" + private_key: "file://%kernel.project_dir%/config/secrets/dev/private.key" + private_key_passphrase: null + platforms: + localPlatform: + name: "Local platform" + audience: "http://localhost/platform" + oidc_authentication_url: "http://localhost/lti1p3/oidc/authentication" + oauth2_access_token_url: "http://localhost/lti1p3/auth/platformKey/token" + tools: + localTool: + name: "Local tool" + audience: "http://localhost/tool" + oidc_initiation_url: "http://localhost/lti1p3/oidc/initiation" + launch_url: null + deep_linking_url: null + registrations: + local: + client_id: "client_id" + platform: "localPlatform" + tool: "localTool" + deployment_ids: + - "deploymentId1" + platform_key_chain: "platformKey" + tool_key_chain: "toolKey" + platform_jwks_url: null + tool_jwks_url: null diff --git a/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml b/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml new file mode 100644 index 00000000..c893970a --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/config/routes/lti1p3.yaml @@ -0,0 +1,11 @@ +lti1p3_jwks: + resource: '@Lti1p3Bundle/Resources/config/routing/jwks.yaml' + +lti1p3_message_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/message/platform.yaml' + +lti1p3_message_tool: + resource: '@Lti1p3Bundle/Resources/config/routing/message/tool.yaml' + +lti1p3_service_platform: + resource: '@Lti1p3Bundle/Resources/config/routing/service/platform.yaml' diff --git a/oat-sa/bundle-lti1p3/3.0/manifest.json b/oat-sa/bundle-lti1p3/3.0/manifest.json new file mode 100644 index 00000000..adfed5a2 --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/manifest.json @@ -0,0 +1,11 @@ +{ + "bundles": { + "OAT\\Bundle\\Lti1p3Bundle\\Lti1p3Bundle": [ "all" ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LTI1P3_SERVICE_ENCRYPTION_KEY": "%generate(secret)%" + } +} diff --git a/oat-sa/bundle-lti1p3/3.0/post-install.txt b/oat-sa/bundle-lti1p3/3.0/post-install.txt new file mode 100644 index 00000000..e8a9d95d --- /dev/null +++ b/oat-sa/bundle-lti1p3/3.0/post-install.txt @@ -0,0 +1,11 @@ + + Next: LTI 1.3 bundle configuration + + + * Create development keys: mkdir -p config/secrets/dev && openssl genrsa -out config/secrets/dev/private.key 2048 && openssl rsa -in config/secrets/dev/private.key -outform PEM -pubout -out config/secrets/dev/public.key + + * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml + + * Configure the platform and tools automated routes in file config/routes/lti1p3.yaml + + * Read the documentation at https://github.com/oat-sa/bundle-lti1p3 From fa4df38107ed9ede85d2d5c846ebffe1ff45e527 Mon Sep 17 00:00:00 2001 From: Jonathan Vuillemin Date: Thu, 1 Oct 2020 09:25:05 +0200 Subject: [PATCH 380/394] version 3.0 --- oat-sa/bundle-lti1p3/3.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oat-sa/bundle-lti1p3/3.0/post-install.txt b/oat-sa/bundle-lti1p3/3.0/post-install.txt index e8a9d95d..28d04b52 100644 --- a/oat-sa/bundle-lti1p3/3.0/post-install.txt +++ b/oat-sa/bundle-lti1p3/3.0/post-install.txt @@ -2,7 +2,7 @@ Next: LTI 1.3 bundle configuration - * Create development keys: mkdir -p config/secrets/dev && openssl genrsa -out config/secrets/dev/private.key 2048 && openssl rsa -in config/secrets/dev/private.key -outform PEM -pubout -out config/secrets/dev/public.key + * Create development keys as explained at https://github.com/oat-sa/bundle-lti1p3/blob/master/doc/quickstart/configuration.md#configure-a-keychain * Configure your keys, platform, tools and registrations in file config/packages/lti1p3.yaml From 4dde63f8eb554cd3cff53493370e2532965d0b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 15:37:32 +0200 Subject: [PATCH 381/394] initial recipe --- .../0.1/config/packages/nflfastr_symfony.yaml | 8 ++++++++ hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml create mode 100644 hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml new file mode 100644 index 00000000..1f96ab86 --- /dev/null +++ b/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -0,0 +1,8 @@ +nflfastr_symfony: + sources: + playByPlay: + baseUrl: https://github.com/guga31bb/nflfastR-data + path: tree/master/data + roster: + baseUrl: https://github.com/mrcaseb/nflfastR-roster + path: tree/master/data/seasons diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json new file mode 100644 index 00000000..7e357a98 --- /dev/null +++ b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 25502acd7eedd62dc31a7a721fd8f13d1167130b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 15:40:05 +0200 Subject: [PATCH 382/394] fix indentation --- .../0.1/config/packages/nflfastr_symfony.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml index 1f96ab86..bee7ea27 100644 --- a/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -1,8 +1,8 @@ nflfastr_symfony: - sources: - playByPlay: - baseUrl: https://github.com/guga31bb/nflfastR-data - path: tree/master/data - roster: - baseUrl: https://github.com/mrcaseb/nflfastR-roster - path: tree/master/data/seasons + sources: + playByPlay: + baseUrl: https://github.com/guga31bb/nflfastR-data + path: tree/master/data + roster: + baseUrl: https://github.com/mrcaseb/nflfastR-roster + path: tree/master/data/seasons From 06cfebc114db2358d1ae50ad99fd98fa59cff483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 15:40:55 +0200 Subject: [PATCH 383/394] fix indentation of manifest.json --- .../nflfastR-symfony-bundle/0.1/manifest.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json index 7e357a98..95fd0354 100644 --- a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json +++ b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json @@ -1,8 +1,8 @@ { - "bundles": { - "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } + "bundles": { + "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } } From 258165abf4313fdbdb95cab9c0270c6c2221e2e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 15:57:40 +0200 Subject: [PATCH 384/394] minor fixes --- hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json index 95fd0354..1ba6f222 100644 --- a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json +++ b/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json @@ -1,6 +1,8 @@ { "bundles": { - "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": ["all"] + "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": [ + "all" + ] }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" From 109c5098d1474147dc70e86d21297d0fbf688b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:01:08 +0200 Subject: [PATCH 385/394] fixes --- .../0.1/config/packages/nflfastr_symfony.yaml | 0 .../nflfastr-symfony-bundle}/0.1/manifest.json | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {hanspeterording/nflfastR-symfony-bundle => hans-peter-ording/nflfastr-symfony-bundle}/0.1/config/packages/nflfastr_symfony.yaml (100%) rename {hanspeterording/nflfastR-symfony-bundle => hans-peter-ording/nflfastr-symfony-bundle}/0.1/manifest.json (67%) diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml similarity index 100% rename from hanspeterording/nflfastR-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml rename to hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml diff --git a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json similarity index 67% rename from hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json rename to hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json index 1ba6f222..eb6aee4c 100644 --- a/hanspeterording/nflfastR-symfony-bundle/0.1/manifest.json +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "HansPeterOrding\\NflfastRSymfonyBundle\\NflfastRSymfonyBundle": [ + "HansPeterOrding\\NflfastrSymfonyBundle\\NflfastrSymfonyBundle": [ "all" ] }, From 8fc3ff3c476640fb91846aaa2d08f4487becc3bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:06:49 +0200 Subject: [PATCH 386/394] add timezone config --- .../0.1/config/packages/nflfastr_symfony.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml index bee7ea27..1696bc74 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -6,3 +6,4 @@ nflfastr_symfony: roster: baseUrl: https://github.com/mrcaseb/nflfastR-roster path: tree/master/data/seasons + timezone: Europe/Berlin From 4ed6c20012aabc00b6c8f00e14de0a626827783b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:15:05 +0200 Subject: [PATCH 387/394] move timezone to top --- .../0.1/config/packages/nflfastr_symfony.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml index 1696bc74..d287f755 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -1,4 +1,5 @@ nflfastr_symfony: + timezone: Europe/Berlin sources: playByPlay: baseUrl: https://github.com/guga31bb/nflfastR-data @@ -6,4 +7,3 @@ nflfastr_symfony: roster: baseUrl: https://github.com/mrcaseb/nflfastR-roster path: tree/master/data/seasons - timezone: Europe/Berlin From f93340c6a7bb9d8762b5e7532ba89d120a0c9ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:20:47 +0200 Subject: [PATCH 388/394] fix namespace --- hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json index eb6aee4c..4fd16111 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/manifest.json @@ -1,6 +1,6 @@ { "bundles": { - "HansPeterOrding\\NflfastrSymfonyBundle\\NflfastrSymfonyBundle": [ + "HansPeterOrding\\NflFastrSymfonyBundle\\NflFastrSymfonyBundle": [ "all" ] }, From 19c4ceb28b9624afe7df3ee7a3012e6865e9cb6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:25:02 +0200 Subject: [PATCH 389/394] minor --- .../0.1/config/packages/nflfastr_symfony.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml index d287f755..1696bc74 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -1,5 +1,4 @@ nflfastr_symfony: - timezone: Europe/Berlin sources: playByPlay: baseUrl: https://github.com/guga31bb/nflfastR-data @@ -7,3 +6,4 @@ nflfastr_symfony: roster: baseUrl: https://github.com/mrcaseb/nflfastR-roster path: tree/master/data/seasons + timezone: Europe/Berlin From ad0d0842a8601b083a701fd796a0086c30496f2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 16:44:44 +0200 Subject: [PATCH 390/394] minor --- .../0.1/config/packages/nflfastr_symfony.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml index 1696bc74..d287f755 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml @@ -1,4 +1,5 @@ nflfastr_symfony: + timezone: Europe/Berlin sources: playByPlay: baseUrl: https://github.com/guga31bb/nflfastR-data @@ -6,4 +7,3 @@ nflfastr_symfony: roster: baseUrl: https://github.com/mrcaseb/nflfastR-roster path: tree/master/data/seasons - timezone: Europe/Berlin From 9716e30d4250aa44d8275f82947163b1e87588f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjo=CC=88rn=20May?= Date: Thu, 8 Oct 2020 17:21:51 +0200 Subject: [PATCH 391/394] rename --- .../packages/{nflfastr_symfony.yaml => nfl_fastr_symfony.yaml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/{nflfastr_symfony.yaml => nfl_fastr_symfony.yaml} (93%) diff --git a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml similarity index 93% rename from hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml rename to hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml index d287f755..5ba7ae1f 100644 --- a/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nflfastr_symfony.yaml +++ b/hans-peter-ording/nflfastr-symfony-bundle/0.1/config/packages/nfl_fastr_symfony.yaml @@ -1,4 +1,4 @@ -nflfastr_symfony: +nfl_fastr_symfony: timezone: Europe/Berlin sources: playByPlay: From 51fbfa4bc0dfae17928cbee37cc48946ad6567d7 Mon Sep 17 00:00:00 2001 From: Gerhard Seidel Date: Mon, 12 Oct 2020 22:19:44 +0200 Subject: [PATCH 392/394] Update env vars --- enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml | 5 +++++ enhavo/app-bundle/0.9/manifest.json | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml index 3fc734d8..04275d52 100644 --- a/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml +++ b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml @@ -1,2 +1,7 @@ enhavo_app: + mailer: + defaults: + from: '%env(resolve:MAILER_FROM)%' + name: '%env(resolve:MAILER_NAME)%' + to: '%env(resolve:MAILER_TO)%' menu: diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json index 6910c53a..ad159674 100644 --- a/enhavo/app-bundle/0.9/manifest.json +++ b/enhavo/app-bundle/0.9/manifest.json @@ -7,9 +7,8 @@ }, "env": { "MAILER_FROM": "no-reply@email.com", - "MAILER_TO": "my@email.com", "MAILER_NAME": "enhavo", - "MAILER_DELIVERY_ADDRESS": "my@email.com" + "MAILER_TO": "my@email.com" }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/", From 5bbc07999b5e03edc57b79ee85143d59a7d3f7d2 Mon Sep 17 00:00:00 2001 From: Robin Lehrmann Date: Sun, 4 Oct 2020 12:28:56 +0200 Subject: [PATCH 393/394] added ambient-link ability pack --- .../1.0/config/packages/ability.yaml | 18 +++++++++++++ ambient-link/ability-sdk/1.0/manifest.json | 12 +++++++++ ambient-link/ability-sdk/1.0/post-install.txt | 26 +++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 ambient-link/ability-sdk/1.0/config/packages/ability.yaml create mode 100644 ambient-link/ability-sdk/1.0/manifest.json create mode 100644 ambient-link/ability-sdk/1.0/post-install.txt diff --git a/ambient-link/ability-sdk/1.0/config/packages/ability.yaml b/ambient-link/ability-sdk/1.0/config/packages/ability.yaml new file mode 100644 index 00000000..86db1c41 --- /dev/null +++ b/ambient-link/ability-sdk/1.0/config/packages/ability.yaml @@ -0,0 +1,18 @@ +services: + AmbientLink\SDK\SmartMonkeyConnection: + arguments: ['@amnient.link_connection_settings', '%env(AMBIENT_LINK_USERNAME)%', '%env(AMBIENT_LINK_PASSWORD)%'] + + amnient.link_connection_settings: + class: PhpMqtt\Client\ConnectionSettings + + PhpMqtt\Client\Contracts\MQTTClient: '@PhpMqtt\Client\MQTTClient' + PhpMqtt\Client\MQTTClient: + arguments: + - '%env(AMBIENT_LINK_HOST)%' + - '%env(AMBIENT_LINK_PORT)%' + - '%env(AMBIENT_LINK_MONKEY_ID)%' + + AmbientLink\SDK\Mqtt\MqttAdapter: + arguments: + $username: '%env(AMBIENT_LINK_USERNAME)%' + $password: '%env(AMBIENT_LINK_PASSWORD)%' diff --git a/ambient-link/ability-sdk/1.0/manifest.json b/ambient-link/ability-sdk/1.0/manifest.json new file mode 100644 index 00000000..2c42a2fd --- /dev/null +++ b/ambient-link/ability-sdk/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "env": { + "AMBIENT_LINK_HOST": "", + "AMBIENT_LINK_PORT": "1883", + "AMBIENT_LINK_USERNAME": "", + "AMBIENT_LINK_PASSWORD": "", + "AMBIENT_LINK_MONKEY_ID": "" + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} diff --git a/ambient-link/ability-sdk/1.0/post-install.txt b/ambient-link/ability-sdk/1.0/post-install.txt new file mode 100644 index 00000000..45cb404c --- /dev/null +++ b/ambient-link/ability-sdk/1.0/post-install.txt @@ -0,0 +1,26 @@ + + To finish the install + + + * Your ability is almost ready: + 1. Edit src/AbilityEventSubscriber and implement your logic: + + public static function getSubscribedEvents(): array + { + return [ + // can be found in AmbientLink\SDK\Event\ + EnterRoomEvent::NAME => 'onEnterRoom', + ]; + } + + public function onEnterRoom(EnterRoomEvent $event): void + { + $roomName = $event->roomName(); + + $this->logger->debug(sprintf('Some person enters room %s', $roomName)); + + // @todo implement logic here + } + + * You can found Events in AmbientLink\SDK\Event\ + * Using Ability Command? Try php bin/console ability:debug --dummy From 8a9afad63d60bb0953a34fc12211a71ca3593ce7 Mon Sep 17 00:00:00 2001 From: Robin Lehrmann Date: Tue, 27 Oct 2020 10:12:52 +0100 Subject: [PATCH 394/394] Update post-install.txt --- ambient-link/ability-sdk/1.0/post-install.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambient-link/ability-sdk/1.0/post-install.txt b/ambient-link/ability-sdk/1.0/post-install.txt index 45cb404c..ba43d62d 100644 --- a/ambient-link/ability-sdk/1.0/post-install.txt +++ b/ambient-link/ability-sdk/1.0/post-install.txt @@ -17,7 +17,7 @@ { $roomName = $event->roomName(); - $this->logger->debug(sprintf('Some person enters room %s', $roomName)); + $this->logger->debug(sprintf('Some person enters room "%s".', $roomName)); // @todo implement logic here }