├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── AbstractPackage.php ├── InstalledPackagesFile.php ├── JsonObject.php ├── LockFile.php ├── Package.php ├── PackageCollection.php ├── RootPackage.php ├── functions.php ├── functions_include.php └── functions_internal.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.idea/ 3 | /nbproject/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractPackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/AbstractPackage.php -------------------------------------------------------------------------------- /src/InstalledPackagesFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/InstalledPackagesFile.php -------------------------------------------------------------------------------- /src/JsonObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/JsonObject.php -------------------------------------------------------------------------------- /src/LockFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/LockFile.php -------------------------------------------------------------------------------- /src/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/Package.php -------------------------------------------------------------------------------- /src/PackageCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/PackageCollection.php -------------------------------------------------------------------------------- /src/RootPackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/RootPackage.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/functions.php -------------------------------------------------------------------------------- /src/functions_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/functions_include.php -------------------------------------------------------------------------------- /src/functions_internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshdifabio/composed/HEAD/src/functions_internal.php --------------------------------------------------------------------------------