1
0
Fork 0

Add missing licence in VersionGuesser

pull/4365/head
Samuel ROZE 2015-08-18 15:10:59 +01:00
parent 623f31fcc4
commit 4ab123291d
1 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,15 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Package\Version;
use Composer\Config;
@ -9,6 +19,12 @@ use Composer\Util\Git as GitUtil;
use Composer\Util\ProcessExecutor;
use Composer\Util\Svn as SvnUtil;
/**
* Try to guess the current version number based on different VCS configuration.
*
* @author Jordi Boggiano <j.boggiano@seld.be>
* @author Samuel Roze <samuel.roze@gmail.com>
*/
class VersionGuesser
{
/**