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

Commit ad859b4

Browse files
committed
moved to the 3.0 directory structure
1 parent cfd40c7 commit ad859b4

File tree

9 files changed

+49
-50
lines changed

9 files changed

+49
-50
lines changed

.gitignore

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
/web/bundles/
21
/app/bootstrap.php.cache
3-
/app/cache/*
42
/app/config/parameters.yml
5-
/app/logs/*
6-
!app/cache/.gitkeep
7-
!app/logs/.gitkeep
8-
/app/phpunit.xml
93
/build/
4+
/phpunit.xml
5+
/var/cache/*
6+
!var/cache/.gitkeep
7+
/var/logs/*
8+
!var/logs/.gitkeep
109
/vendor/
11-
/composer.phar
10+
/web/bundles/

app/phpunit.xml.dist

Lines changed: 0 additions & 37 deletions
This file was deleted.

app/check.php renamed to bin/check_requirements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
require_once dirname(__FILE__).'/SymfonyRequirements.php';
3+
require_once dirname(__DIR__).'/var/SymfonyRequirements.php';
44

55
$lineSize = 70;
66
$symfonyRequirements = new SymfonyRequirements();

app/console renamed to bin/console

File renamed without changes.

composer.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
4+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
6+
backupGlobals="false"
7+
colors="true"
8+
bootstrap="app/bootstrap.php.cache"
9+
>
10+
<testsuites>
11+
<testsuite name="Project Test Suite">
12+
<directory>src/*/*Bundle/Tests</directory>
13+
<directory>src/*/Bundle/*Bundle/Tests</directory>
14+
<directory>src/*Bundle/Tests</directory>
15+
</testsuite>
16+
</testsuites>
17+
18+
<!--
19+
<php>
20+
<server name="KERNEL_DIR" value="/path/to/your/app/" />
21+
</php>
22+
-->
23+
24+
<filter>
25+
<whitelist>
26+
<directory>src</directory>
27+
<exclude>
28+
<directory>src/*Bundle/Resources</directory>
29+
<directory>src/*Bundle/Tests</directory>
30+
<directory>src/*/*Bundle/Resources</directory>
31+
<directory>src/*/*Bundle/Tests</directory>
32+
<directory>src/*/Bundle/*Bundle/Resources</directory>
33+
<directory>src/*/Bundle/*Bundle/Tests</directory>
34+
</exclude>
35+
</whitelist>
36+
</filter>
37+
</phpunit>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)