Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit d84850a

Browse files
committed
removed non-MIT/BSD licensed bundles and librairies
1 parent 802b6ed commit d84850a

File tree

6 files changed

+46
-429
lines changed

6 files changed

+46
-429
lines changed

README.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -140,24 +140,21 @@ It comes pre-configured with the following bundles:
140140
* [**AsseticBundle**][12] - Adds support for Assetic, an asset processing
141141
library
142142

143-
* [**JMSSecurityExtraBundle**][13] - Allows security to be added via
144-
annotations
145-
146-
* [**JMSDiExtraBundle**][14] - Adds more powerful dependency injection
147-
features
148-
149143
* **WebProfilerBundle** (in dev/test env) - Adds profiling functionality and
150144
the web debug toolbar
151145

152146
* **SensioDistributionBundle** (in dev/test env) - Adds functionality for
153147
configuring and working with Symfony distributions
154148

155-
* [**SensioGeneratorBundle**][15] (in dev/test env) - Adds code generation
149+
* [**SensioGeneratorBundle**][13] (in dev/test env) - Adds code generation
156150
capabilities
157151

158152
* **AcmeDemoBundle** (in dev/test env) - A demo bundle with some example
159153
code
160154

155+
All libraries and bundles included in the Symfony Standard Edition are
156+
released under the MIT or BSD license.
157+
161158
Enjoy!
162159

163160
[1]: http://symfony.com/doc/2.1/book/installation.html
@@ -172,6 +169,4 @@ Enjoy!
172169
[10]: http://symfony.com/doc/2.1/cookbook/email.html
173170
[11]: http://symfony.com/doc/2.1/cookbook/logging/monolog.html
174171
[12]: http://symfony.com/doc/2.1/cookbook/assetic/asset_management.html
175-
[13]: http://jmsyst.com/bundles/JMSSecurityExtraBundle/master
176-
[14]: http://jmsyst.com/bundles/JMSDiExtraBundle/master
177-
[15]: http://symfony.com/doc/2.1/bundles/SensioGeneratorBundle/index.html
172+
[13]: http://symfony.com/doc/2.1/bundles/SensioGeneratorBundle/index.html

app/AppKernel.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ public function registerBundles()
1616
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
1717
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
1818
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
19-
new JMS\AopBundle\JMSAopBundle(),
20-
new JMS\DiExtraBundle\JMSDiExtraBundle($this),
21-
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
2219
);
2320

2421
if (in_array($this->getEnvironment(), array('dev', 'test'))) {

app/config/security.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
jms_security_extra:
2-
secure_all_services: false
3-
expressions: true
4-
51
security:
62
encoders:
73
Symfony\Component\Security\Core\User\User: plaintext
@@ -39,4 +35,5 @@ security:
3935
# realm: "Secured Demo Area"
4036

4137
access_control:
38+
- { path: ^/demo/secured/hello/admin/, roles: ROLE_ADMIN }
4239
#- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY, requires_channel: https }

composer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
"symfony/monolog-bundle": "2.2.*",
1818
"sensio/distribution-bundle": "2.2.*",
1919
"sensio/framework-extra-bundle": "2.2.*",
20-
"sensio/generator-bundle": "2.2.*",
21-
"jms/security-extra-bundle": "1.4.*",
22-
"jms/di-extra-bundle": "1.3.*"
20+
"sensio/generator-bundle": "2.2.*"
2321
},
2422
"scripts": {
2523
"post-install-cmd": [

0 commit comments

Comments
 (0)