updated compiler class to include spdx sources
parent
5ae9e7fe22
commit
1f006a499e
|
@ -23,6 +23,7 @@
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3.2",
|
"php": ">=5.3.2",
|
||||||
|
"justinrainbow/json-schema": "~1.4",
|
||||||
"composer/spdx-licenses": "~1.0",
|
"composer/spdx-licenses": "~1.0",
|
||||||
"seld/jsonlint": "~1.0",
|
"seld/jsonlint": "~1.0",
|
||||||
"symfony/console": "~2.5",
|
"symfony/console": "~2.5",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"hash": "694654491125336d91b339a8e117bb40",
|
"hash": "6d311df5df4ca3795787f58b29b03470",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "composer/spdx-licenses",
|
"name": "composer/spdx-licenses",
|
||||||
|
@ -69,20 +69,20 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "justinrainbow/json-schema",
|
"name": "justinrainbow/json-schema",
|
||||||
"version": "1.4.1",
|
"version": "1.4.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/justinrainbow/json-schema.git",
|
"url": "https://github.com/justinrainbow/json-schema.git",
|
||||||
"reference": "2465fe486c864e30badaa4d005ebdf89dbc503f3"
|
"reference": "8dc9b9d85ab639ca60ab4608b34c1279d6ae7bce"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2465fe486c864e30badaa4d005ebdf89dbc503f3",
|
"url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/8dc9b9d85ab639ca60ab4608b34c1279d6ae7bce",
|
||||||
"reference": "2465fe486c864e30badaa4d005ebdf89dbc503f3",
|
"reference": "8dc9b9d85ab639ca60ab4608b34c1279d6ae7bce",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3.0"
|
"php": ">=5.3.2"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"json-schema/json-schema-test-suite": "1.1.0",
|
"json-schema/json-schema-test-suite": "1.1.0",
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
"json",
|
"json",
|
||||||
"schema"
|
"schema"
|
||||||
],
|
],
|
||||||
"time": "2015-03-27 16:41:39"
|
"time": "2015-07-14 16:29:50"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "seld/cli-prompt",
|
"name": "seld/cli-prompt",
|
||||||
|
|
|
@ -95,7 +95,8 @@ class Compiler
|
||||||
$finder = new Finder();
|
$finder = new Finder();
|
||||||
$finder->files()
|
$finder->files()
|
||||||
->name('*.json')
|
->name('*.json')
|
||||||
->in(__DIR__ . '/../../res')
|
->in(__DIR__.'/../../res')
|
||||||
|
->in(__DIR__.'/../../vendor/composer/spdx-licenses/res/')
|
||||||
->sort($finderSort)
|
->sort($finderSort)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -116,6 +117,7 @@ class Compiler
|
||||||
->in(__DIR__.'/../../vendor/seld/jsonlint/')
|
->in(__DIR__.'/../../vendor/seld/jsonlint/')
|
||||||
->in(__DIR__.'/../../vendor/seld/cli-prompt/')
|
->in(__DIR__.'/../../vendor/seld/cli-prompt/')
|
||||||
->in(__DIR__.'/../../vendor/justinrainbow/json-schema/')
|
->in(__DIR__.'/../../vendor/justinrainbow/json-schema/')
|
||||||
|
->in(__DIR__.'/../../vendor/composer/spdx-licenses/')
|
||||||
->sort($finderSort)
|
->sort($finderSort)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue