Packagist #51
Replies: 5 comments 6 replies
-
Not yet. I'm concentrating on finishing version 5. Then a Docker support is on the list. However, you may noticed that Adminer is maintained again (see #49). |
Beta Was this translation helpful? Give feedback.
-
|
And how exactly would you like to install and use AdminNeo from Packagist? Because AdminNeo is supposed to run from the compiled and minified file. And it is possible to compile only drivers and languages that you need. So do you want to download the sources and then compile the final file by yourself? Note that you can also download specific AdminNeo directly from a static URL: https://www.adminneo.org/download#download-url This allows you to automate the installation process as well. |
Beta Was this translation helpful? Give feedback.
-
|
Bonjour à tous,
(Please note that I haven't installed Adminer for almost a year.)
I haven't used the new versions of Admineneo yet. And perhaps my problem is now solved with this new version.
I use Adminer with the sqlite database.
My main problem concerns integration with a Symfony project, particularly because I want to use Symfony's authentication system.
It might be useful to provide a standard Amnineo distribution with a selection of robust plugins and a configuration file for settings.
It would also be useful to be able to redirect all internal access to Admineo to an external proxy URL to ensure authentication.
I was able to solve the problem with older versions of Adminer by including the main Adminer file from my Symfony application. But I had to fight against the side effects caused by Adminer's *non-use* of namespaces by Adminer. This solution eventually stopped working.
Later, I tried to validate authentication through communication via a temporary file on the server side (all access to Adminer had to be authorized by Symfony), but it didn't work out.
It probably wasn't the right way to go about it, so I gave up.
With the redesign of Adminer into Admineo, I am hopeful that integration with an existing app will be easier. Even if integration with Paquagist does not seem essential to me, at least it would guarantee this integration ;-)
…-- Maurice
Le 7 août 2025 à 00:06, Jacob Dreesen ***@***.***> a écrit :
I would like to add it as an alternative to vrana/adminer in my Pimcore integration: teamneusta/pimcore-database-admin-bundle.
So do you want to download the sources and then compile the final file by yourself?
If that's how it has to be used, then yes, that's probably how I would do it. However, if there is a way to use the sources directly, I would prefer that.
Note that you can also download specific AdminNeo directly from a static URL: adminneo.org/download#download-url This allows you to automate the installation process as well.
I'm not that keen on committing dependencies to the Git repository these days when we've got Composer, but I'll give it a try.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
|
There is a complication with using Composer. Libraries jsshrink and phpshrink don't have any tags (and versions), so they are referenced by I solved it in the {
"name": "test/test",
"version": "0.1",
"require": {
"php": ">=8.1",
"adminneo-org/adminneo": "@dev"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/adminneo-org/adminneo.git"
}
]
}index.php: <?php
chdir("../vendor/adminneo-org/adminneo/admin");
require "index.php";Or compile a file: php vendor/adminneo-org/adminneo/bin/compile.php mysqland then in index.php: <?php
require "../vendor/adminneo-org/adminneo/compiled/adminneo-mysql.php"; |
Beta Was this translation helpful? Give feedback.
-
|
AdminNeo 5.1 has been released with Composer/Packagist support. So now you can install a stable version: composer require adminneo-org/adminneoI've also added information about using Composer and compiled version of AdminNeo: https://www.adminneo.org/download#composer |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
Love the work!
I would like to create a pimcore community bundle to integrate adminerneo, as they've dropped support for adminer with their v11 due to lack of maintenance, but github-only package makes it annoying to install due to github's rate limits. Have you considered posting the repo to packagist?
Thanks for all your work!
Beta Was this translation helpful? Give feedback.
All reactions