Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/composer-install.bat
/composer-update.bat
/composer.lock
.DS_Store
/git.bat
/phpunit-tests-run-with-coverage.bat
/phpunit-tests-run.bat
Expand All @@ -14,3 +13,4 @@
/vendors-install.bat
/vendors-update.bat
/vendors-whatsnew.bat
.DS_Store
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Tests/bootstrap.php → Bundle/Tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use Symfony\Component\Debug\ErrorHandler;
use Symfony\Component\HttpKernel\Kernel;

$loader = require __DIR__.'/../vendor/autoload.php';
$loader = require __DIR__ . '/../../vendor/autoload.php';
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));

if (Kernel::VERSION_ID >= 20600) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions Component/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/.buildpath
/.project
/.settings
/git-subtree-split.bat
/git.bat
.DS_Store
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions Component/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Copyright (c) 2011-2015 Christian Raue <christian.raue@gmail.com>
Licensed under the MIT License: http://opensource.org/licenses/mit-license.php
1 change: 1 addition & 0 deletions Component/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
For further information refer to https://github.com/craue/CraueFormFlowBundle.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
37 changes: 37 additions & 0 deletions Component/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "craue/formflow",
"type": "library",
"description": "Subtree split of the core library of CraueFormFlowBundle for standalone usage.",
"keywords": ["form", "wizard", "step"],
"homepage": "https://github.com/craue/CraueFormFlow",
"license": "MIT",
"authors": [
{
"name": "Christian Raue",
"email": "christian.raue@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/craue/CraueFormFlowBundle/contributors"
}
],
"require": {
"php": ">=5.3.2",
"symfony/form": "~2.3",
"symfony/http-kernel": "~2.3",
"symfony/translation": "~2.3",
"symfony/yaml": "~2.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@
"sensio/framework-extra-bundle": "~2.1|~3.0",
"symfony/symfony": "~2.3"
},
"replace": {
"craue/formflow": "self.version"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
"Craue\\FormFlowBundle\\": ["Bundle/", "Component/"]
}
},
"extra": {
Expand Down
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
bootstrap="Tests/bootstrap.php"
bootstrap="Bundle/Tests/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="CraueFormFlowBundle">
<directory suffix="Test.php">Tests</directory>
<directory suffix="Test.php">Bundle/Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">.</directory>
<exclude>
<directory suffix=".php">Tests</directory>
<directory suffix=".php">Bundle/Tests</directory>
<directory suffix=".php">vendor</directory>
<file>phpunit.php</file>
</exclude>
Expand Down