Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
New directory structure (netgen#5)
* Updated files with new directory structure

* New license badge

* .scrutinizer.yml updated with new dir structure
  • Loading branch information
MarioBlazek authored and emodric committed Jan 24, 2018
1 parent d35e325 commit dbc6bec
Show file tree
Hide file tree
Showing 21 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
@@ -1,6 +1,6 @@
filter:
excluded_paths:
- 'Tests/*'
- 'tests/*'
- 'vendor/*'
tools:
external_code_coverage: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Netgen Siteaccess Routes Bundle
[![Quality Score](https://img.shields.io/scrutinizer/g/netgen/NetgenSiteAccessRoutesBundle.svg?style=flat-square)](https://scrutinizer-ci.com/g/netgen/NetgenSiteAccessRoutesBundle)
[![Downloads](https://img.shields.io/packagist/dt/netgen/siteaccess-routes-bundle.svg?style=flat-square)](https://packagist.org/packages/netgen/siteaccess-routes-bundle)
[![Latest stable](https://img.shields.io/packagist/v/netgen/siteaccess-routes-bundle.svg?style=flat-square)](https://packagist.org/packages/netgen/siteaccess-routes-bundle)
[![License](https://img.shields.io/packagist/l/netgen/siteaccess-routes-bundle.svg?style=flat-square)](https://packagist.org/packages/netgen/siteaccess-routes-bundle)
[![License](https://img.shields.io/github/license/netgen/NetgenSiteAccessRoutesBundle.svg?style=flat-square)](LICENSE)

Netgen Siteaccess Routes Bundle is an eZ Publish / eZ Platform bundle which allows you to specify in which siteaccesses or siteaccess groups can a route be used.

Expand Down
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.
20 changes: 19 additions & 1 deletion composer.json
Expand Up @@ -2,6 +2,14 @@
"name": "netgen/siteaccess-routes-bundle",
"description": "Netgen Siteaccess Routes Bundle is an eZ Publish / eZ Platform bundle which allows you to specify in which siteaccesses or siteaccess groups can a route be used",
"type": "ezplatform-bundle",
"keywords": [
"ezpublish",
"ezplatform",
"netgen",
"siteaccess-routes-bundle",
"siteaccess"
],
"homepage": "https://github.com/netgen/NetgenSiteAccessRoutesBundle",
"license": "GPL-2.0-only",
"authors": [
{
Expand All @@ -17,7 +25,17 @@
"phpunit/phpunit": "^5.7|^6.5"
},
"autoload": {
"psr-4": {"Netgen\\Bundle\\SiteAccessRoutesBundle\\": ""}
"psr-4": {
"Netgen\\Bundle\\SiteAccessRoutesBundle\\": "bundle"
}
},
"autoload-dev": {
"psr-4": {
"Netgen\\Bundle\\SiteAccessRoutesBundle\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit --colors=always"
},
"extra": {
"branch-alias": {
Expand Down
12 changes: 4 additions & 8 deletions phpunit.xml
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
Expand All @@ -17,18 +16,15 @@
>
<testsuites>
<testsuite name="Netgen\Bundle\SiteAccessRoutesBundle">
<directory>Tests</directory>
<directory>tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">.</directory>
<directory suffix=".php">bundle</directory>
<exclude>
<directory>vendor</directory>
<directory>DependencyInjection</directory>
<directory>Resources</directory>
<directory>Tests</directory>
<directory>bundle/DependencyInjection</directory>
<directory>bundle/Resources</directory>
<file>NetgenSiteAccessRoutesBundle.php</file>
</exclude>
</whitelist>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dbc6bec

Please sign in to comment.