diff options
| -rw-r--r-- | composer.json | 29 | ||||
| -rw-r--r-- | php-tracy.spec | 7 | 
2 files changed, 34 insertions, 2 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2336955 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ +	"name": "tracy/tracy", +	"description": "Tracy: useful PHP debugger", +	"keywords": ["debug", "debugger", "nette"], +	"homepage": "https://tracy.nette.org", +	"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"], +	"authors": [ +		{ +			"name": "David Grudl", +			"homepage": "https://davidgrudl.com" +		}, +		{ +			"name": "Nette Community", +			"homepage": "https://nette.org/contributors" +		} +	], +	"require": { +		"php": ">=5.3.1" +	}, +	"require-dev": { +		"nette/di": "~2.3", +		"nette/tester": "~1.3" +	}, +	"autoload": { +		"classmap": ["src"], +		"files": ["src/shortcuts.php"] +	}, +	"minimum-stability": "dev" +} diff --git a/php-tracy.spec b/php-tracy.spec index a5b288e..f9a42e5 100644 --- a/php-tracy.spec +++ b/php-tracy.spec @@ -6,7 +6,7 @@  #  # Please, preserve the changelog entries  # -%global gh_commit    0378bbc73ba54be60f90a00faa148768fb723406 +%global gh_commit    152b7602115dd3a66f3190280951390097a15f65  #global gh_date      20150728  %global gh_short     %(c=%{gh_commit}; echo ${c:0:7})  %global gh_owner     nette @@ -16,7 +16,7 @@  %global with_tests   0%{!?_without_tests:1}  Name:           php-%{gh_project} -Version:        2.3.10 +Version:        2.3.11  %global specrel 1  Release:        %{?gh_date:0.%{specrel}.%{?prever}%{!?prever:%{gh_date}git%{gh_short}}}%{!?gh_date:%{specrel}}%{?dist}  Summary:        Tracy: useful PHP debugger @@ -145,6 +145,9 @@ rm -rf %{buildroot}  %changelog +* Mon May 30 2016 Remi Collet <remi@fedoraproject.org> - 2.3.11-1 +- update to 2.3.11 +  * Mon Feb 29 2016 Remi Collet <remi@fedoraproject.org> - 2.3.10-1  - update to 2.3.10  | 
