Download the PHP package survos/atlas-bundle without Composer

On this page you can find all versions of the php package survos/atlas-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package atlas-bundle

Atlas Bundle

Compile-time discovery of controllers, routes, and entities — the atlas the rest of survos draws maps from.

What it does

At compile time, it walks:

  1. Controllers — every service tagged container.service_subscriber (the Symfony default for AbstractController subclasses), recording one RouteEntry per #[Route] method along with every other attribute on the method and class.
  2. Entities — directories from doctrine.orm.mappings plus src/Entity plus each registered bundle's Entity/ subdir, recording one EntityEntry per concrete class with its class-level attributes.

The result is exposed as a runtime Atlas service. Atlas does not interpret attributes — it records them. Bundles like survos/field-bundle layer domain meaning (#[EntityMeta], #[RouteMeta], …) on top.

How attributes are stored — the {class, args} shape

Attribute payloads are kept as plain arrays, not instantiated objects:

args is exactly what ReflectionAttribute::getArguments() returned: positional values keyed by integer, named values keyed by string name.

This shape has three properties worth keeping in mind:

To turn a stored entry back into a real attribute object, unpack the args:

PHP's named-argument unpacking handles mixed positional/named args correctly, so this works whether the attribute was written as #[PublicApi(2)] or #[PublicApi(version: 2)].

Using the Atlas at runtime

Using the builders inside your own compiler pass

The builders are pure helpers — no service registration, no runtime cost when called from a compile pass.

Console

The output is the natural shape to paste into an LLM conversation when you want to ask design questions about your application's surface area.

Conventions

Which attributes get recorded

Atlas is opinionated. Only attributes whose class FQCN starts with one of these prefixes are captured:

Anything else — most importantly ApiPlatform's #[ApiResource] and friends — is silently filtered out. ApiPlatform's attribute universe is huge and deeply nested; analyzing it belongs in survos/inspection-bundle, not here. Atlas's scope is "metadata that drives survos features," not "every attribute on every method."

If you genuinely need wider coverage, pass extra prefixes to AttributeFilter::accepts($fqcn, $extraNamespaces) from your own builder call — but reconsider the layering first.

See also

Atlas is intentionally low-level — it records what's there. If you want opinionated metadata attributes with semantic helpers on top, install survos/field-bundle:

field-bundle defines:

Both are discovered through Atlas, and field-bundle ships richer registries (EntityMetaRegistry, RouteMetaRegistry) plus an enriched meta:export command that joins entities and routes into a single graph. Use Atlas directly when you have your own attribute vocabulary; reach for field-bundle when its vocabulary is what you'd be inventing.


All versions of atlas-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.4
symfony/config Version ^8.0
symfony/console Version ^8.0
symfony/dependency-injection Version ^8.0
symfony/finder Version ^8.0
symfony/http-kernel Version ^8.0
symfony/routing Version ^8.0
symfony/yaml Version ^8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package survos/atlas-bundle contains the following files

Loading the files please wait ...