Skip to content

Commit ffce2a8

Browse files
author
Emmanuel ROY
committed
update: gitlist intégration
1 parent fd3a86d commit ffce2a8

2,015 files changed

Lines changed: 246397 additions & 3 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
composer.lock
2-
vendor
2+
/vendor
33
.idea
44
.php_cs.cache
55

@@ -8,4 +8,6 @@ application/config/app-parameters.php
88
application/config/bdd-parameters.php
99
application/config/cas-authentification-config.php
1010
application/config/hybrid-authentification-config.php
11-
application/config/soap-constantes.php
11+
application/config/soap-constantes.php
12+
13+
application/include/vues/cache/*
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
{{$app->load('gitlist')}}
1+
@extends('body')
2+
3+
@section('sidebar')
4+
@parent
5+
6+
<p>This is appended to the master sidebar.</p>
7+
@endsection
8+
9+
@section('content')
10+
{{$app->load('gitlist')}}
11+
@endsection
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!/vendor
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
require_once __DIR__ . '/composer/autoload_real.php';
6+
7+
return ComposerAutoloaderInitf745c517d30ee4778dfe192e71dd63a5::getLoader();
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#!/usr/bin/env php
2+
<?php
3+
/*
4+
* This file is part of PHPUnit.
5+
*
6+
* (c) Sebastian Bergmann <sebastian@phpunit.de>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
if (version_compare('5.3.3', PHP_VERSION, '>')) {
13+
fwrite(
14+
STDERR,
15+
sprintf(
16+
'This version of PHPUnit is supported on PHP 5.3, PHP 5.4, PHP 5.5, and PHP 5.6.' . PHP_EOL .
17+
'You are using PHP %s%s.' . PHP_EOL,
18+
PHP_VERSION,
19+
defined('PHP_BINARY') ? ' (' . PHP_BINARY . ')' : ''
20+
)
21+
);
22+
23+
die(1);
24+
}
25+
26+
if (!ini_get('date.timezone')) {
27+
ini_set('date.timezone', 'UTC');
28+
}
29+
30+
foreach (array(__DIR__ . '/../../autoload.php', __DIR__ . '/../vendor/autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
31+
if (file_exists($file)) {
32+
define('PHPUNIT_COMPOSER_INSTALL', $file);
33+
34+
break;
35+
}
36+
}
37+
38+
unset($file);
39+
40+
if (!defined('PHPUNIT_COMPOSER_INSTALL')) {
41+
fwrite(STDERR,
42+
'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
43+
' composer install' . PHP_EOL . PHP_EOL .
44+
'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
45+
);
46+
47+
die(1);
48+
}
49+
50+
require PHPUNIT_COMPOSER_INSTALL;
51+
52+
PHPUnit_TextUI_Command::main();

0 commit comments

Comments
 (0)