Skip to content

Commit

Permalink
src/ to PSR-4
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsorst committed Feb 21, 2016
1 parent 35417b5 commit 73634f2
Show file tree
Hide file tree
Showing 21 changed files with 24 additions and 40 deletions.
42 changes: 21 additions & 21 deletions app/phpunit.xml.dist
@@ -1,36 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="../var/bootstrap.php.cache">
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
</php>

<testsuites>
<testsuite name="Project Test Suite">
<directory>../src/*/*/*Bundle/Tests</directory>
<testsuite name="Unit Tests">
<directory>../src/*Bundle/Tests/Unit/</directory>
</testsuite>
<testsuite name="Integration Tests">
<directory>../src/*Bundle/Tests/Integration/</directory>
</testsuite>
</testsuites>

<php>
<server name="KERNEL_DIR" value="app/"/>
</php>

<filter>
<whitelist>
<directory>../src</directory>
<exclude>
<directory>../src/*/*/*Bundle/Resources</directory>
<directory>../src/*/*/*Bundle/Tests</directory>
<directory>../src/*Bundle/Resources</directory>
<directory>../src/*Bundle/Tests</directory>
<directory>../src/*/*Bundle/Resources</directory>
<directory>../src/*/*Bundle/Tests</directory>
<directory>../src/*/Bundle/*Bundle/Resources</directory>
<directory>../src/*/Bundle/*Bundle/Tests</directory>
</exclude>
</whitelist>
</filter>

</phpunit>
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -14,8 +14,8 @@
}
],
"autoload": {
"psr-0": {
"": "src/"
"psr-4": {
"Dontdrinkandroot\\Gitki\\": "src/"
},
"classmap": [
"app/AppKernel.php",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 0 additions & 16 deletions web/config.php
Expand Up @@ -44,12 +44,10 @@
font-size: 14px;
font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}

.sf-reset h1.title {
font-size: 45px;
padding-bottom: 30px;
}

.sf-reset h2 {
font-weight: bold;
color: #FFFFFF;
Expand All @@ -61,72 +59,58 @@
display: inline-block;
text-transform: uppercase;
}

.sf-reset ul a,
.sf-reset ul a:hover {
background: url(../images/blue-arrow.png) no-repeat right 6px;
padding-right: 10px;
}

.sf-reset ul, ol {
padding-left: 20px;
}

.sf-reset li {
padding-bottom: 18px;
}

.sf-reset ol li {
list-style-type: decimal;
}

.sf-reset ul li {
list-style-type: none;
}

.sf-reset .symfony-blocks-install {
overflow: hidden;
}

.sf-reset .symfony-install-continue {
font-size: 0.95em;
padding-left: 0;
}

.sf-reset .symfony-install-continue li {
padding-bottom: 10px;
}

.sf-reset .ok {
color: #fff;
font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
background-color: #6d6;
padding: 10px;
margin-bottom: 20px;
}

.sf-reset .ko {
background-color: #d66;
}

.version {
text-align: right;
font-size: 10px;
margin-right: 20px;
}

.sf-reset a,
.sf-reset li a {
color: #08C;
text-decoration: none;
}

.sf-reset a:hover,
.sf-reset li a:hover {
color: #08C;
text-decoration: underline;
}

.sf-reset textarea {
padding: 7px;
}
Expand Down

0 comments on commit 73634f2

Please sign in to comment.