Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does 'Acme' stand for in Symfony2?

Tags:

php

symfony

The standard bundle in Symfony2 is 'Acme', but what does that stand for?

like image 448
Sherlock Avatar asked Sep 26 '12 09:09

Sherlock


3 Answers

ACME (A Company (that) Makes Everything) is a fictional company from the Looney Tunes: http://en.wikipedia.org/wiki/Acme_Corporation

It's used as a placeholder name (like "foo", "bar", etc).

enter image description here

like image 186
Epoc Avatar answered Nov 13 '22 20:11

Epoc


It means "A Company (that) Makes Everything"

like image 21
Joann Avatar answered Nov 13 '22 20:11

Joann


ACME is the root namespace name of these standard bundles. Code therein you should identify as the code you write your own, so not the code of the framework itself which you should not touch.

You find the usage of that namespace outlined in the introductory chapter The Big Picture (archived copy).

It's used exemplary, it hints being the name of your company, see Acme Corporation on wikipedia for some cultural references.

But sure, Symfony2 is neither a computer game nor a fictional movie, so probably it's hard to draw that connection line.

See Also: [Newbie] Why ACME prefix? (symfony framework forum) (21 May 2011)

like image 6
hakre Avatar answered Nov 13 '22 20:11

hakre