Come faccio ad includere il copyright / licenza per una biblioteca se utilizzo su 1 funzione?
Di 'se ho una classe che prendo 1 funzione da un'altra libreria:
class MyClass {
...
public function someOtherLibrariesFunction() {}
}
E nella parte superiore del file ho preso la funzione da esso dice:
/*
* This file is part of the Other Library package.
*
* (c) James Smith <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
E il file LICENSE:
Copyright (c) 2004-2013 James Smith
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
...standard as is warranty...
Quindi la mia comprensione è che dovrei avere una copia del file LICENSE incluso nel mio codice, e vorrei anche sottolineare in qualche modo la funzione esatta a cui si applica?