diff options
author | Tobias Schultze <webmaster@tubo-world.de> | 2014-06-20 21:32:40 +0200 |
---|---|---|
committer | Tobias Schultze <webmaster@tubo-world.de> | 2015-04-11 23:38:32 +0200 |
commit | 6a2e4f33d640ac68d3ce7720853084546904d039 (patch) | |
tree | f3d3d4382016c17cfb92eb1c96bbe54b39d0ca1b | |
parent | 08b772491eb03aca9457dc0f6a5a4a8d6064e39c (diff) | |
download | symfony-security-6a2e4f33d640ac68d3ce7720853084546904d039.zip symfony-security-6a2e4f33d640ac68d3ce7720853084546904d039.tar.gz symfony-security-6a2e4f33d640ac68d3ce7720853084546904d039.tar.bz2 |
Use PSR-4 everywhere instead of PSR-0
-rw-r--r-- | Acl/composer.json | 3 | ||||
-rw-r--r-- | Core/composer.json | 3 | ||||
-rw-r--r-- | Csrf/composer.json | 3 | ||||
-rw-r--r-- | Http/composer.json | 3 | ||||
-rw-r--r-- | composer.json | 3 |
5 files changed, 5 insertions, 10 deletions
diff --git a/Acl/composer.json b/Acl/composer.json index feb666a..256671c 100644 --- a/Acl/composer.json +++ b/Acl/composer.json @@ -31,9 +31,8 @@ "doctrine/dbal": "For using the built-in ACL implementation" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\Acl\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Acl\\": "" } }, - "target-dir": "Symfony/Component/Security/Acl", "minimum-stability": "dev", "extra": { "branch-alias": { diff --git a/Core/composer.json b/Core/composer.json index a9825c0..2b407dc 100644 --- a/Core/composer.json +++ b/Core/composer.json @@ -36,9 +36,8 @@ "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\Core\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Core\\": "" } }, - "target-dir": "Symfony/Component/Security/Core", "minimum-stability": "dev", "extra": { "branch-alias": { diff --git a/Csrf/composer.json b/Csrf/composer.json index 88c39b2..8a489ca 100644 --- a/Csrf/composer.json +++ b/Csrf/composer.json @@ -27,9 +27,8 @@ "symfony/http-foundation": "For using the class SessionTokenStorage." }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\Csrf\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" } }, - "target-dir": "Symfony/Component/Security/Csrf", "minimum-stability": "dev", "extra": { "branch-alias": { diff --git a/Http/composer.json b/Http/composer.json index 4fa4f76..eb6aeda 100644 --- a/Http/composer.json +++ b/Http/composer.json @@ -33,9 +33,8 @@ "symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\Http\\": "" } + "psr-4": { "Symfony\\Component\\Security\\Http\\": "" } }, - "target-dir": "Symfony/Component/Security/Http", "minimum-stability": "dev", "extra": { "branch-alias": { diff --git a/composer.json b/composer.json index 67fe809..1c016b1 100644 --- a/composer.json +++ b/composer.json @@ -49,9 +49,8 @@ "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5" }, "autoload": { - "psr-0": { "Symfony\\Component\\Security\\": "" } + "psr-4": { "Symfony\\Component\\Security\\": "" } }, - "target-dir": "Symfony/Component/Security", "minimum-stability": "dev", "extra": { "branch-alias": { |